1. Packages
  2. AWS
  3. API Docs
  4. ec2
  5. getSpotDatafeedSubscription
AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi

aws.ec2.getSpotDatafeedSubscription

Explore with Pulumi AI

aws logo
AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi

    There is only a single spot data feed subscription per account.

    Data source for accessing an AWS EC2 (Elastic Compute Cloud) spot data feed subscription.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const default = aws.ec2.getSpotDatafeedSubscription({});
    
    import pulumi
    import pulumi_aws as aws
    
    default = aws.ec2.get_spot_datafeed_subscription()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ec2.LookupSpotDatafeedSubscription(ctx, map[string]interface{}{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var @default = Aws.Ec2.GetSpotDatafeedSubscription.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.Ec2Functions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var default = Ec2Functions.getSpotDatafeedSubscription();
    
        }
    }
    
    variables:
      default:
        fn::invoke:
          Function: aws:ec2:getSpotDatafeedSubscription
          Arguments: {}
    

    Using getSpotDatafeedSubscription

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSpotDatafeedSubscription(opts?: InvokeOptions): Promise<GetSpotDatafeedSubscriptionResult>
    function getSpotDatafeedSubscriptionOutput(opts?: InvokeOptions): Output<GetSpotDatafeedSubscriptionResult>
    def get_spot_datafeed_subscription(opts: Optional[InvokeOptions] = None) -> GetSpotDatafeedSubscriptionResult
    def get_spot_datafeed_subscription_output(opts: Optional[InvokeOptions] = None) -> Output[GetSpotDatafeedSubscriptionResult]
    func LookupSpotDatafeedSubscription(ctx *Context, opts ...InvokeOption) (*LookupSpotDatafeedSubscriptionResult, error)
    func LookupSpotDatafeedSubscriptionOutput(ctx *Context, opts ...InvokeOption) LookupSpotDatafeedSubscriptionResultOutput

    > Note: This function is named LookupSpotDatafeedSubscription in the Go SDK.

    public static class GetSpotDatafeedSubscription 
    {
        public static Task<GetSpotDatafeedSubscriptionResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetSpotDatafeedSubscriptionResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSpotDatafeedSubscriptionResult> getSpotDatafeedSubscription(InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: aws:ec2/getSpotDatafeedSubscription:getSpotDatafeedSubscription
      arguments:
        # arguments dictionary

    getSpotDatafeedSubscription Result

    The following output properties are available:

    Bucket string
    The name of the Amazon S3 bucket where the spot instance data feed is located.
    Id string
    The provider-assigned unique ID for this managed resource.
    Prefix string
    The prefix for the data feed files.
    Bucket string
    The name of the Amazon S3 bucket where the spot instance data feed is located.
    Id string
    The provider-assigned unique ID for this managed resource.
    Prefix string
    The prefix for the data feed files.
    bucket String
    The name of the Amazon S3 bucket where the spot instance data feed is located.
    id String
    The provider-assigned unique ID for this managed resource.
    prefix String
    The prefix for the data feed files.
    bucket string
    The name of the Amazon S3 bucket where the spot instance data feed is located.
    id string
    The provider-assigned unique ID for this managed resource.
    prefix string
    The prefix for the data feed files.
    bucket str
    The name of the Amazon S3 bucket where the spot instance data feed is located.
    id str
    The provider-assigned unique ID for this managed resource.
    prefix str
    The prefix for the data feed files.
    bucket String
    The name of the Amazon S3 bucket where the spot instance data feed is located.
    id String
    The provider-assigned unique ID for this managed resource.
    prefix String
    The prefix for the data feed files.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi