1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. appfabric
  6. IngestionDestination
Viewing docs for AWS v7.43.0
published on Thursday, Aug 20, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.43.0
published on Thursday, Aug 20, 2026 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/v7/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.ArrayList;
    import java.util.Arrays;
    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}
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_appfabric_ingestiondestination" "example" {
      app_bundle_arn = exampleAwsAppfabricAppBundle.arn
      ingestion_arn  = exampleAwsAppfabricIngestion.arn
      processing_configuration = {
        audit_log = {
          format = "json"
          schema = "raw"
        }
      }
      destination_configuration = {
        audit_log = {
          destination = {
            s3_bucket = {
              bucket_name = 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,
                             destination_configuration: Optional[IngestionDestinationDestinationConfigurationArgs] = None,
                             ingestion_arn: Optional[str] = None,
                             processing_configuration: Optional[IngestionDestinationProcessingConfigurationArgs] = None,
                             region: Optional[str] = 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.
    
    
    resource "aws_appfabric_ingestion_destination" "name" {
        # resource properties
    }

    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",
        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",
                    },
                },
            },
        },
        IngestionArn = "string",
        ProcessingConfiguration = new Aws.AppFabric.Inputs.IngestionDestinationProcessingConfigurationArgs
        {
            AuditLog = new Aws.AppFabric.Inputs.IngestionDestinationProcessingConfigurationAuditLogArgs
            {
                Format = "string",
                Schema = "string",
            },
        },
        Region = "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"),
    	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"),
    				},
    			},
    		},
    	},
    	IngestionArn: pulumi.String("string"),
    	ProcessingConfiguration: &appfabric.IngestionDestinationProcessingConfigurationArgs{
    		AuditLog: &appfabric.IngestionDestinationProcessingConfigurationAuditLogArgs{
    			Format: pulumi.String("string"),
    			Schema: pulumi.String("string"),
    		},
    	},
    	Region: 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"),
    	},
    })
    
    resource "aws_appfabric_ingestion_destination" "ingestionDestinationResource" {
      lifecycle {
        create_before_destroy = true
      }
      app_bundle_arn = "string"
      destination_configuration = {
        audit_log = {
          destination = {
            firehose_stream = {
              stream_name = "string"
            }
            s3_bucket = {
              bucket_name = "string"
              prefix      = "string"
            }
          }
        }
      }
      ingestion_arn = "string"
      processing_configuration = {
        audit_log = {
          format = "string"
          schema = "string"
        }
      }
      region = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
    }
    
    var ingestionDestinationResource = new IngestionDestination("ingestionDestinationResource", IngestionDestinationArgs.builder()
        .appBundleArn("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())
        .ingestionArn("string")
        .processingConfiguration(IngestionDestinationProcessingConfigurationArgs.builder()
            .auditLog(IngestionDestinationProcessingConfigurationAuditLogArgs.builder()
                .format("string")
                .schema("string")
                .build())
            .build())
        .region("string")
        .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",
        destination_configuration={
            "audit_log": {
                "destination": {
                    "firehose_stream": {
                        "stream_name": "string",
                    },
                    "s3_bucket": {
                        "bucket_name": "string",
                        "prefix": "string",
                    },
                },
            },
        },
        ingestion_arn="string",
        processing_configuration={
            "audit_log": {
                "format": "string",
                "schema": "string",
            },
        },
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const ingestionDestinationResource = new aws.appfabric.IngestionDestination("ingestionDestinationResource", {
        appBundleArn: "string",
        destinationConfiguration: {
            auditLog: {
                destination: {
                    firehoseStream: {
                        streamName: "string",
                    },
                    s3Bucket: {
                        bucketName: "string",
                        prefix: "string",
                    },
                },
            },
        },
        ingestionArn: "string",
        processingConfiguration: {
            auditLog: {
                format: "string",
                schema: "string",
            },
        },
        region: "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
        region: 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

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IngestionDestination resource accepts the following input properties:

    AppBundleArn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    DestinationConfiguration IngestionDestinationDestinationConfiguration
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    IngestionArn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    ProcessingConfiguration IngestionDestinationProcessingConfiguration

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IngestionDestinationTimeouts
    AppBundleArn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    DestinationConfiguration IngestionDestinationDestinationConfigurationArgs
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    IngestionArn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    ProcessingConfiguration IngestionDestinationProcessingConfigurationArgs

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IngestionDestinationTimeoutsArgs
    app_bundle_arn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    destination_configuration object
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestion_arn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processing_configuration object

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags map(string)
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    appBundleArn String
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestionArn String
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration IngestionDestinationProcessingConfiguration

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngestionDestinationTimeouts
    appBundleArn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestionArn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration IngestionDestinationProcessingConfiguration

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngestionDestinationTimeouts
    app_bundle_arn str
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    destination_configuration IngestionDestinationDestinationConfigurationArgs
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestion_arn str
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processing_configuration IngestionDestinationProcessingConfigurationArgs

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IngestionDestinationTimeoutsArgs
    appBundleArn String
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    destinationConfiguration Property Map
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestionArn String
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration Property Map

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    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 defaultTags configuration block.
    arn string
    ARN of the Ingestion Destination.
    id string
    The provider-assigned unique ID for this managed resource.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    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 defaultTags configuration block.
    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 defaultTags configuration block.
    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 defaultTags configuration block.
    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 defaultTags configuration block.

    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,
            region: Optional[str] = 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)
    resources:  _:    type: aws:appfabric:IngestionDestination    get:      id: ${id}
    import {
      to = aws_appfabric_ingestion_destination.example
      id = "${id}"
    }
    
    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
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    Arn string
    ARN of the Ingestion Destination.
    DestinationConfiguration IngestionDestinationDestinationConfiguration
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    IngestionArn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    ProcessingConfiguration IngestionDestinationProcessingConfiguration

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    Timeouts IngestionDestinationTimeouts
    AppBundleArn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    Arn string
    ARN of the Ingestion Destination.
    DestinationConfiguration IngestionDestinationDestinationConfigurationArgs
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    IngestionArn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    ProcessingConfiguration IngestionDestinationProcessingConfigurationArgs

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    Timeouts IngestionDestinationTimeoutsArgs
    app_bundle_arn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn string
    ARN of the Ingestion Destination.
    destination_configuration object
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestion_arn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processing_configuration object

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags map(string)
    Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts object
    appBundleArn String
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn String
    ARN of the Ingestion Destination.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestionArn String
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration IngestionDestinationProcessingConfiguration

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    timeouts IngestionDestinationTimeouts
    appBundleArn string
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn string
    ARN of the Ingestion Destination.
    destinationConfiguration IngestionDestinationDestinationConfiguration
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestionArn string
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration IngestionDestinationProcessingConfiguration

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    timeouts IngestionDestinationTimeouts
    app_bundle_arn str
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn str
    ARN of the Ingestion Destination.
    destination_configuration IngestionDestinationDestinationConfigurationArgs
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestion_arn str
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processing_configuration IngestionDestinationProcessingConfigurationArgs

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    timeouts IngestionDestinationTimeoutsArgs
    appBundleArn String
    Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn String
    ARN of the Ingestion Destination.
    destinationConfiguration Property Map
    Configuration for the destination of ingested data. See destinationConfiguration Block below.
    ingestionArn String
    Amazon Resource Name (ARN) of the ingestion to use for the request.
    processingConfiguration Property Map

    Configuration for how ingested data is processed. See processingConfiguration Block below.

    The following arguments are optional:

    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider defaultTags 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 defaultTags configuration block.
    timeouts Property Map

    Supporting Types

    IngestionDestinationDestinationConfiguration, IngestionDestinationDestinationConfigurationArgs

    AuditLog IngestionDestinationDestinationConfigurationAuditLog
    Audit log destination configuration. See destination_configuration.audit_log Block below.
    AuditLog IngestionDestinationDestinationConfigurationAuditLog
    Audit log destination configuration. See destination_configuration.audit_log Block below.
    audit_log object
    Audit log destination configuration. See destination_configuration.audit_log Block below.
    auditLog IngestionDestinationDestinationConfigurationAuditLog
    Audit log destination configuration. See destination_configuration.audit_log Block below.
    auditLog IngestionDestinationDestinationConfigurationAuditLog
    Audit log destination configuration. See destination_configuration.audit_log Block below.
    audit_log IngestionDestinationDestinationConfigurationAuditLog
    Audit log destination configuration. See destination_configuration.audit_log Block below.
    auditLog Property Map
    Audit log destination configuration. See destination_configuration.audit_log Block below.

    IngestionDestinationDestinationConfigurationAuditLog, IngestionDestinationDestinationConfigurationAuditLogArgs

    Destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.
    Destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.
    destination object
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.
    destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.
    destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.
    destination IngestionDestinationDestinationConfigurationAuditLogDestination
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.
    destination Property Map
    Destination for the audit log. Only one destination, either firehoseStream or s3Bucket, can be specified. See destination_configuration.audit_log.destination Block below.

    IngestionDestinationDestinationConfigurationAuditLogDestination, IngestionDestinationDestinationConfigurationAuditLogDestinationArgs

    FirehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    S3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.
    FirehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    S3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.
    firehose_stream object
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    s3_bucket object
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.
    firehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    s3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.
    firehoseStream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    s3Bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.
    firehose_stream IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    s3_bucket IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.
    firehoseStream Property Map
    Amazon Data Firehose delivery stream destination. See destination_configuration.audit_log.destination.firehose_stream Block below.
    s3Bucket Property Map
    Amazon S3 bucket destination. See destination_configuration.audit_log.destination.s3_bucket Block below.

    IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream, IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs

    StreamName string
    Name of the Amazon Data Firehose delivery stream.
    StreamName string
    Name of the Amazon Data Firehose delivery stream.
    stream_name string
    Name of the Amazon Data Firehose delivery stream.
    streamName String
    Name of the Amazon Data Firehose delivery stream.
    streamName string
    Name of the Amazon Data Firehose delivery stream.
    stream_name str
    Name of the Amazon Data Firehose delivery stream.
    streamName String
    Name of the Amazon Data Firehose delivery stream.

    IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket, IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs

    BucketName string
    Name of the Amazon S3 bucket.
    Prefix string
    Object key to use.
    BucketName string
    Name of the Amazon S3 bucket.
    Prefix string
    Object key to use.
    bucket_name string
    Name of the Amazon S3 bucket.
    prefix string
    Object key to use.
    bucketName String
    Name of the Amazon S3 bucket.
    prefix String
    Object key to use.
    bucketName string
    Name of the Amazon S3 bucket.
    prefix string
    Object key to use.
    bucket_name str
    Name of the Amazon S3 bucket.
    prefix str
    Object key to use.
    bucketName String
    Name of the Amazon S3 bucket.
    prefix String
    Object key to use.

    IngestionDestinationProcessingConfiguration, IngestionDestinationProcessingConfigurationArgs

    AuditLog IngestionDestinationProcessingConfigurationAuditLog
    Audit log processing configuration. See processing_configuration.audit_log Block below.
    AuditLog IngestionDestinationProcessingConfigurationAuditLog
    Audit log processing configuration. See processing_configuration.audit_log Block below.
    audit_log object
    Audit log processing configuration. See processing_configuration.audit_log Block below.
    auditLog IngestionDestinationProcessingConfigurationAuditLog
    Audit log processing configuration. See processing_configuration.audit_log Block below.
    auditLog IngestionDestinationProcessingConfigurationAuditLog
    Audit log processing configuration. See processing_configuration.audit_log Block below.
    audit_log IngestionDestinationProcessingConfigurationAuditLog
    Audit log processing configuration. See processing_configuration.audit_log Block below.
    auditLog Property Map
    Audit log processing configuration. See processing_configuration.audit_log Block below.

    IngestionDestinationProcessingConfigurationAuditLog, IngestionDestinationProcessingConfigurationAuditLogArgs

    Format string
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    Schema string
    Event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    Format string
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    Schema string
    Event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format string
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema string
    Event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format String
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema String
    Event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format string
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema string
    Event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format str
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema str
    Event schema in which the audit logs need to be formatted. Valid values: ocsf, raw.
    format String
    Format in which the audit logs need to be formatted. Valid values: json, parquet.
    schema String
    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 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 logo
    Viewing docs for AWS v7.43.0
    published on Thursday, Aug 20, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial