1. Packages
  2. AWS
  3. API Docs
  4. appfabric
  5. IngestionDestination
AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi

aws.appfabric.IngestionDestination

Explore with Pulumi AI

aws logo
AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi

    Resource for managing an AWS AppFabric Ingestion Destination.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.appfabric.IngestionDestination("example", {
        appBundleArn: exampleAwsAppfabricAppBundle.arn,
        ingestionArn: exampleAwsAppfabricIngestion.arn,
        processingConfiguration: {
            auditLog: {
                format: "json",
                schema: "raw",
            },
        },
        destinationConfiguration: {
            auditLog: {
                destination: {
                    s3Bucket: {
                        bucketName: exampleAwsS3Bucket.bucket,
                    },
                },
            },
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.appfabric.IngestionDestination("example",
        app_bundle_arn=example_aws_appfabric_app_bundle["arn"],
        ingestion_arn=example_aws_appfabric_ingestion["arn"],
        processing_configuration={
            "audit_log": {
                "format": "json",
                "schema": "raw",
            },
        },
        destination_configuration={
            "audit_log": {
                "destination": {
                    "s3_bucket": {
                        "bucket_name": example_aws_s3_bucket["bucket"],
                    },
                },
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appfabric"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := appfabric.NewIngestionDestination(ctx, "example", &appfabric.IngestionDestinationArgs{
    			AppBundleArn: pulumi.Any(exampleAwsAppfabricAppBundle.Arn),
    			IngestionArn: pulumi.Any(exampleAwsAppfabricIngestion.Arn),
    			ProcessingConfiguration: &appfabric.IngestionDestinationProcessingConfigurationArgs{
    				AuditLog: &appfabric.IngestionDestinationProcessingConfigurationAuditLogArgs{
    					Format: pulumi.String("json"),
    					Schema: pulumi.String("raw"),
    				},
    			},
    			DestinationConfiguration: &appfabric.IngestionDestinationDestinationConfigurationArgs{
    				AuditLog: &appfabric.IngestionDestinationDestinationConfigurationAuditLogArgs{
    					Destination: &appfabric.IngestionDestinationDestinationConfigurationAuditLogDestinationArgs{
    						S3Bucket: &appfabric.IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs{
    							BucketName: pulumi.Any(exampleAwsS3Bucket.Bucket),
    						},
    					},
    				},
    			},
    		})
    		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 example = new Aws.AppFabric.IngestionDestination("example", new()
        {
            AppBundleArn = exampleAwsAppfabricAppBundle.Arn,
            IngestionArn = exampleAwsAppfabricIngestion.Arn,
            ProcessingConfiguration = new Aws.AppFabric.Inputs.IngestionDestinationProcessingConfigurationArgs
            {
                AuditLog = new Aws.AppFabric.Inputs.IngestionDestinationProcessingConfigurationAuditLogArgs
                {
                    Format = "json",
                    Schema = "raw",
                },
            },
            DestinationConfiguration = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationArgs
            {
                AuditLog = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogArgs
                {
                    Destination = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationArgs
                    {
                        S3Bucket = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs
                        {
                            BucketName = exampleAwsS3Bucket.Bucket,
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.appfabric.IngestionDestination;
    import com.pulumi.aws.appfabric.IngestionDestinationArgs;
    import com.pulumi.aws.appfabric.inputs.IngestionDestinationProcessingConfigurationArgs;
    import com.pulumi.aws.appfabric.inputs.IngestionDestinationProcessingConfigurationAuditLogArgs;
    import com.pulumi.aws.appfabric.inputs.IngestionDestinationDestinationConfigurationArgs;
    import com.pulumi.aws.appfabric.inputs.IngestionDestinationDestinationConfigurationAuditLogArgs;
    import com.pulumi.aws.appfabric.inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationArgs;
    import com.pulumi.aws.appfabric.inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs;
    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) {
            var example = new IngestionDestination("example", IngestionDestinationArgs.builder()
                .appBundleArn(exampleAwsAppfabricAppBundle.arn())
                .ingestionArn(exampleAwsAppfabricIngestion.arn())
                .processingConfiguration(IngestionDestinationProcessingConfigurationArgs.builder()
                    .auditLog(IngestionDestinationProcessingConfigurationAuditLogArgs.builder()
                        .format("json")
                        .schema("raw")
                        .build())
                    .build())
                .destinationConfiguration(IngestionDestinationDestinationConfigurationArgs.builder()
                    .auditLog(IngestionDestinationDestinationConfigurationAuditLogArgs.builder()
                        .destination(IngestionDestinationDestinationConfigurationAuditLogDestinationArgs.builder()
                            .s3Bucket(IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs.builder()
                                .bucketName(exampleAwsS3Bucket.bucket())
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:appfabric:IngestionDestination
        properties:
          appBundleArn: ${exampleAwsAppfabricAppBundle.arn}
          ingestionArn: ${exampleAwsAppfabricIngestion.arn}
          processingConfiguration:
            auditLog:
              format: json
              schema: raw
          destinationConfiguration:
            auditLog:
              destination:
                s3Bucket:
                  bucketName: ${exampleAwsS3Bucket.bucket}
    

    Create IngestionDestination Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IngestionDestination(name: string, args: IngestionDestinationArgs, opts?: CustomResourceOptions);
    @overload
    def IngestionDestination(resource_name: str,
                             args: IngestionDestinationArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def IngestionDestination(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             app_bundle_arn: Optional[str] = None,
                             ingestion_arn: Optional[str] = None,
                             destination_configuration: Optional[IngestionDestinationDestinationConfigurationArgs] = None,
                             processing_configuration: Optional[IngestionDestinationProcessingConfigurationArgs] = None,
                             tags: Optional[Mapping[str, str]] = None,
                             timeouts: Optional[IngestionDestinationTimeoutsArgs] = None)
    func NewIngestionDestination(ctx *Context, name string, args IngestionDestinationArgs, opts ...ResourceOption) (*IngestionDestination, error)
    public IngestionDestination(string name, IngestionDestinationArgs args, CustomResourceOptions? opts = null)
    public IngestionDestination(String name, IngestionDestinationArgs args)
    public IngestionDestination(String name, IngestionDestinationArgs args, CustomResourceOptions options)
    
    type: aws:appfabric:IngestionDestination
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IngestionDestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IngestionDestinationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IngestionDestinationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IngestionDestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IngestionDestinationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var ingestionDestinationResource = new Aws.AppFabric.IngestionDestination("ingestionDestinationResource", new()
    {
        AppBundleArn = "string",
        IngestionArn = "string",
        DestinationConfiguration = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationArgs
        {
            AuditLog = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogArgs
            {
                Destination = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationArgs
                {
                    FirehoseStream = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs
                    {
                        StreamName = "string",
                    },
                    S3Bucket = new Aws.AppFabric.Inputs.IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs
                    {
                        BucketName = "string",
                        Prefix = "string",
                    },
                },
            },
        },
        ProcessingConfiguration = new Aws.AppFabric.Inputs.IngestionDestinationProcessingConfigurationArgs
        {
            AuditLog = new Aws.AppFabric.Inputs.IngestionDestinationProcessingConfigurationAuditLogArgs
            {
                Format = "string",
                Schema = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.AppFabric.Inputs.IngestionDestinationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := appfabric.NewIngestionDestination(ctx, "ingestionDestinationResource", &appfabric.IngestionDestinationArgs{
    	AppBundleArn: pulumi.String("string"),
    	IngestionArn: pulumi.String("string"),
    	DestinationConfiguration: &appfabric.IngestionDestinationDestinationConfigurationArgs{
    		AuditLog: &appfabric.IngestionDestinationDestinationConfigurationAuditLogArgs{
    			Destination: &appfabric.IngestionDestinationDestinationConfigurationAuditLogDestinationArgs{
    				FirehoseStream: &appfabric.IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs{
    					StreamName: pulumi.String("string"),
    				},
    				S3Bucket: &appfabric.IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs{
    					BucketName: pulumi.String("string"),
    					Prefix:     pulumi.String("string"),
    				},
    			},
    		},
    	},
    	ProcessingConfiguration: &appfabric.IngestionDestinationProcessingConfigurationArgs{
    		AuditLog: &appfabric.IngestionDestinationProcessingConfigurationAuditLogArgs{
    			Format: pulumi.String("string"),
    			Schema: pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &appfabric.IngestionDestinationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var ingestionDestinationResource = new IngestionDestination("ingestionDestinationResource", IngestionDestinationArgs.builder()
        .appBundleArn("string")
        .ingestionArn("string")
        .destinationConfiguration(IngestionDestinationDestinationConfigurationArgs.builder()
            .auditLog(IngestionDestinationDestinationConfigurationAuditLogArgs.builder()
                .destination(IngestionDestinationDestinationConfigurationAuditLogDestinationArgs.builder()
                    .firehoseStream(IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs.builder()
                        .streamName("string")
                        .build())
                    .s3Bucket(IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs.builder()
                        .bucketName("string")
                        .prefix("string")
                        .build())
                    .build())
                .build())
            .build())
        .processingConfiguration(IngestionDestinationProcessingConfigurationArgs.builder()
            .auditLog(IngestionDestinationProcessingConfigurationAuditLogArgs.builder()
                .format("string")
                .schema("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .timeouts(IngestionDestinationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    ingestion_destination_resource = aws.appfabric.IngestionDestination("ingestionDestinationResource",
        app_bundle_arn="string",
        ingestion_arn="string",
        destination_configuration={
            "auditLog": {
                "destination": {
                    "firehoseStream": {
                        "streamName": "string",
                    },
                    "s3Bucket": {
                        "bucketName": "string",
                        "prefix": "string",
                    },
                },
            },
        },
        processing_configuration={
            "auditLog": {
                "format": "string",
                "schema": "string",
            },
        },
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const ingestionDestinationResource = new aws.appfabric.IngestionDestination("ingestionDestinationResource", {
        appBundleArn: "string",
        ingestionArn: "string",
        destinationConfiguration: {
            auditLog: {
                destination: {
                    firehoseStream: {
                        streamName: "string",
                    },
                    s3Bucket: {
                        bucketName: "string",
                        prefix: "string",
                    },
                },
            },
        },
        processingConfiguration: {
            auditLog: {
                format: "string",
                schema: "string",
            },
        },
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:appfabric:IngestionDestination
    properties:
        appBundleArn: string
        destinationConfiguration:
            auditLog:
                destination:
                    firehoseStream:
                        streamName: string
                    s3Bucket:
                        bucketName: string
                        prefix: string
        ingestionArn: string
        processingConfiguration:
            auditLog:
                format: string
                schema: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    IngestionDestination Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The IngestionDestination resource accepts the following input properties:

    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    IngestionArn string
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    DestinationConfiguration IngestionDestinationDestinationConfiguration
    Contains information about the destination of ingested data.
    ProcessingConfiguration IngestionDestinationProcessingConfiguration
    Contains information about how ingested data is processed.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IngestionDestinationTimeouts
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    IngestionArn string
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    DestinationConfiguration IngestionDestinationDestinationConfigurationArgs
    Contains information about the destination of ingested data.
    ProcessingConfiguration IngestionDestinationProcessingConfigurationArgs
    Contains information about how ingested data is processed.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IngestionDestinationTimeoutsArgs
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    ingestionArn String
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Contains information about the destination of ingested data.
    processingConfiguration IngestionDestinationProcessingConfiguration
    Contains information about how ingested data is processed.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngestionDestinationTimeouts
    appBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    ingestionArn string
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Contains information about the destination of ingested data.
    processingConfiguration IngestionDestinationProcessingConfiguration
    Contains information about how ingested data is processed.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngestionDestinationTimeouts
    app_bundle_arn str
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    ingestion_arn str
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    destination_configuration IngestionDestinationDestinationConfigurationArgs
    Contains information about the destination of ingested data.
    processing_configuration IngestionDestinationProcessingConfigurationArgs
    Contains information about how ingested data is processed.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngestionDestinationTimeoutsArgs
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    ingestionArn String
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    destinationConfiguration Property Map
    Contains information about the destination of ingested data.
    processingConfiguration Property Map
    Contains information about how ingested data is processed.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IngestionDestination resource produces the following output properties:

    Arn string
    ARN of the Ingestion Destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    ARN of the Ingestion Destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the Ingestion Destination.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    ARN of the Ingestion Destination.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    ARN of the Ingestion Destination.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the Ingestion Destination.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing IngestionDestination Resource

    Get an existing IngestionDestination resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IngestionDestinationState, opts?: CustomResourceOptions): IngestionDestination
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_bundle_arn: Optional[str] = None,
            arn: Optional[str] = None,
            destination_configuration: Optional[IngestionDestinationDestinationConfigurationArgs] = None,
            ingestion_arn: Optional[str] = None,
            processing_configuration: Optional[IngestionDestinationProcessingConfigurationArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[IngestionDestinationTimeoutsArgs] = None) -> IngestionDestination
    func GetIngestionDestination(ctx *Context, name string, id IDInput, state *IngestionDestinationState, opts ...ResourceOption) (*IngestionDestination, error)
    public static IngestionDestination Get(string name, Input<string> id, IngestionDestinationState? state, CustomResourceOptions? opts = null)
    public static IngestionDestination get(String name, Output<String> id, IngestionDestinationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    Arn string
    ARN of the Ingestion Destination.
    DestinationConfiguration IngestionDestinationDestinationConfiguration
    Contains information about the destination of ingested data.
    IngestionArn string
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    ProcessingConfiguration IngestionDestinationProcessingConfiguration
    Contains information about how ingested data is processed.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts IngestionDestinationTimeouts
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    Arn string
    ARN of the Ingestion Destination.
    DestinationConfiguration IngestionDestinationDestinationConfigurationArgs
    Contains information about the destination of ingested data.
    IngestionArn string
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    ProcessingConfiguration IngestionDestinationProcessingConfigurationArgs
    Contains information about how ingested data is processed.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts IngestionDestinationTimeoutsArgs
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn String
    ARN of the Ingestion Destination.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Contains information about the destination of ingested data.
    ingestionArn String
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration IngestionDestinationProcessingConfiguration
    Contains information about how ingested data is processed.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts IngestionDestinationTimeouts
    appBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn string
    ARN of the Ingestion Destination.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Contains information about the destination of ingested data.
    ingestionArn string
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration IngestionDestinationProcessingConfiguration
    Contains information about how ingested data is processed.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts IngestionDestinationTimeouts
    app_bundle_arn str
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn str
    ARN of the Ingestion Destination.
    destination_configuration IngestionDestinationDestinationConfigurationArgs
    Contains information about the destination of ingested data.
    ingestion_arn str
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    processing_configuration IngestionDestinationProcessingConfigurationArgs
    Contains information about how ingested data is processed.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts IngestionDestinationTimeoutsArgs
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn String
    ARN of the Ingestion Destination.
    destinationConfiguration Property Map
    Contains information about the destination of ingested data.
    ingestionArn String
    The Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration Property Map
    Contains information about how ingested data is processed.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map

    Supporting Types

    IngestionDestinationDestinationConfiguration, IngestionDestinationDestinationConfigurationArgs

    AuditLog IngestionDestinationDestinationConfigurationAuditLog
    Contains information about an audit log processing configuration.
    AuditLog IngestionDestinationDestinationConfigurationAuditLog
    Contains information about an audit log processing configuration.
    auditLog IngestionDestinationDestinationConfigurationAuditLog
    Contains information about an audit log processing configuration.
    auditLog IngestionDestinationDestinationConfigurationAuditLog
    Contains information about an audit log processing configuration.
    audit_log IngestionDestinationDestinationConfigurationAuditLog
    Contains information about an audit log processing configuration.
    auditLog Property Map
    Contains information about an audit log processing configuration.

    IngestionDestinationDestinationConfigurationAuditLog, IngestionDestinationDestinationConfigurationAuditLogArgs

    Destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
    Destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
    destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
    destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
    destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
    destination Property Map
    Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.

    IngestionDestinationDestinationConfigurationAuditLogDestination, IngestionDestinationDestinationConfigurationAuditLogDestinationArgs

    FirehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Contains information about an Amazon Data Firehose delivery stream.
    S3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Contains information about an Amazon S3 bucket.
    FirehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Contains information about an Amazon Data Firehose delivery stream.
    S3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Contains information about an Amazon S3 bucket.
    firehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Contains information about an Amazon Data Firehose delivery stream.
    s3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Contains information about an Amazon S3 bucket.
    firehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Contains information about an Amazon Data Firehose delivery stream.
    s3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Contains information about an Amazon S3 bucket.
    firehose_stream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Contains information about an Amazon Data Firehose delivery stream.
    s3_bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Contains information about an Amazon S3 bucket.
    firehoseStream Property Map
    Contains information about an Amazon Data Firehose delivery stream.
    s3Bucket Property Map
    Contains information about an Amazon S3 bucket.

    IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream, IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs

    StreamName string
    StreamName string
    streamName String
    streamName string
    streamName String

    IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket, IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs

    BucketName string
    Prefix string
    The object key to use.
    BucketName string
    Prefix string
    The object key to use.
    bucketName String
    prefix String
    The object key to use.
    bucketName string
    prefix string
    The object key to use.
    bucket_name str
    prefix str
    The object key to use.
    bucketName String
    prefix String
    The object key to use.

    IngestionDestinationProcessingConfiguration, IngestionDestinationProcessingConfigurationArgs

    AuditLog IngestionDestinationProcessingConfigurationAuditLog
    Contains information about an audit log processing configuration.
    AuditLog IngestionDestinationProcessingConfigurationAuditLog
    Contains information about an audit log processing configuration.
    auditLog IngestionDestinationProcessingConfigurationAuditLog
    Contains information about an audit log processing configuration.
    auditLog IngestionDestinationProcessingConfigurationAuditLog
    Contains information about an audit log processing configuration.
    audit_log IngestionDestinationProcessingConfigurationAuditLog
    Contains information about an audit log processing configuration.
    auditLog Property Map
    Contains information about an audit log processing configuration.

    IngestionDestinationProcessingConfigurationAuditLog, IngestionDestinationProcessingConfigurationAuditLogArgs

    Format string
    The format in which the audit logs need to be formatted. Valid values: json, parquet.
    Schema string
    The event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    Format string
    The format in which the audit logs need to be formatted. Valid values: json, parquet.
    Schema string
    The event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format String
    The format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema String
    The event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format string
    The format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema string
    The event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format str
    The format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema str
    The event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format String
    The format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema String
    The event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.

    IngestionDestinationTimeouts, IngestionDestinationTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    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.54.0 published on Friday, Sep 27, 2024 by Pulumi