aws.appfabric.IngestionDestination
Explore with Pulumi AI
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={
        "audit_log": {
            "destination": {
                "firehose_stream": {
                    "stream_name": "string",
                },
                "s3_bucket": {
                    "bucket_name": "string",
                    "prefix": "string",
                },
            },
        },
    },
    processing_configuration={
        "audit_log": {
            "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
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:
- AppBundle stringArn 
- 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 IngestionDestination Destination Configuration 
- Contains information about the destination of ingested data.
- ProcessingConfiguration IngestionDestination Processing Configuration 
- Contains information about how ingested data is processed.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Timeouts
IngestionDestination Timeouts 
- AppBundle stringArn 
- 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 IngestionDestination Destination Configuration Args 
- Contains information about the destination of ingested data.
- ProcessingConfiguration IngestionDestination Processing Configuration Args 
- Contains information about how ingested data is processed.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Timeouts
IngestionDestination Timeouts Args 
- appBundle StringArn 
- 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 IngestionDestination Destination Configuration 
- Contains information about the destination of ingested data.
- processingConfiguration IngestionDestination Processing Configuration 
- Contains information about how ingested data is processed.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- timeouts
IngestionDestination Timeouts 
- appBundle stringArn 
- 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 IngestionDestination Destination Configuration 
- Contains information about the destination of ingested data.
- processingConfiguration IngestionDestination Processing Configuration 
- Contains information about how ingested data is processed.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- timeouts
IngestionDestination Timeouts 
- app_bundle_ strarn 
- 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 IngestionDestination Destination Configuration Args 
- Contains information about the destination of ingested data.
- processing_configuration IngestionDestination Processing Configuration Args 
- Contains information about how ingested data is processed.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- timeouts
IngestionDestination Timeouts Args 
- appBundle StringArn 
- 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.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration 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:
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) -> IngestionDestinationfunc 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}- 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.
- AppBundle stringArn 
- The Amazon Resource Name (ARN) of the app bundle to use for the request.
- Arn string
- ARN of the Ingestion Destination.
- DestinationConfiguration IngestionDestination Destination Configuration 
- Contains information about the destination of ingested data.
- IngestionArn string
- The Amazon Resource Name (ARN) of the ingestion to use for the request.
- ProcessingConfiguration IngestionDestination Processing Configuration 
- Contains information about how ingested data is processed.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Timeouts
IngestionDestination Timeouts 
- AppBundle stringArn 
- The Amazon Resource Name (ARN) of the app bundle to use for the request.
- Arn string
- ARN of the Ingestion Destination.
- DestinationConfiguration IngestionDestination Destination Configuration Args 
- Contains information about the destination of ingested data.
- IngestionArn string
- The Amazon Resource Name (ARN) of the ingestion to use for the request.
- ProcessingConfiguration IngestionDestination Processing Configuration Args 
- Contains information about how ingested data is processed.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Timeouts
IngestionDestination Timeouts Args 
- appBundle StringArn 
- The Amazon Resource Name (ARN) of the app bundle to use for the request.
- arn String
- ARN of the Ingestion Destination.
- destinationConfiguration IngestionDestination Destination Configuration 
- Contains information about the destination of ingested data.
- ingestionArn String
- The Amazon Resource Name (ARN) of the ingestion to use for the request.
- processingConfiguration IngestionDestination Processing Configuration 
- Contains information about how ingested data is processed.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts
IngestionDestination Timeouts 
- appBundle stringArn 
- The Amazon Resource Name (ARN) of the app bundle to use for the request.
- arn string
- ARN of the Ingestion Destination.
- destinationConfiguration IngestionDestination Destination Configuration 
- Contains information about the destination of ingested data.
- ingestionArn string
- The Amazon Resource Name (ARN) of the ingestion to use for the request.
- processingConfiguration IngestionDestination Processing Configuration 
- Contains information about how ingested data is processed.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts
IngestionDestination Timeouts 
- app_bundle_ strarn 
- The Amazon Resource Name (ARN) of the app bundle to use for the request.
- arn str
- ARN of the Ingestion Destination.
- destination_configuration IngestionDestination Destination Configuration Args 
- 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 IngestionDestination Processing Configuration Args 
- Contains information about how ingested data is processed.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts
IngestionDestination Timeouts Args 
- appBundle StringArn 
- 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.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- timeouts Property Map
Supporting Types
IngestionDestinationDestinationConfiguration, IngestionDestinationDestinationConfigurationArgs        
- AuditLog IngestionDestination Destination Configuration Audit Log 
- Contains information about an audit log processing configuration.
- AuditLog IngestionDestination Destination Configuration Audit Log 
- Contains information about an audit log processing configuration.
- auditLog IngestionDestination Destination Configuration Audit Log 
- Contains information about an audit log processing configuration.
- auditLog IngestionDestination Destination Configuration Audit Log 
- Contains information about an audit log processing configuration.
- audit_log IngestionDestination Destination Configuration Audit Log 
- Contains information about an audit log processing configuration.
- auditLog Property Map
- Contains information about an audit log processing configuration.
IngestionDestinationDestinationConfigurationAuditLog, IngestionDestinationDestinationConfigurationAuditLogArgs            
- Destination
IngestionDestination Destination Configuration Audit Log Destination 
- Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
- Destination
IngestionDestination Destination Configuration Audit Log Destination 
- Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
- destination
IngestionDestination Destination Configuration Audit Log Destination 
- Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
- destination
IngestionDestination Destination Configuration Audit Log Destination 
- Contains information about an audit log destination. Only one destination (Firehose Stream) or (S3 Bucket) can be specified.
- destination
IngestionDestination Destination Configuration Audit Log Destination 
- 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 IngestionDestination Destination Configuration Audit Log Destination Firehose Stream 
- Contains information about an Amazon Data Firehose delivery stream.
- S3Bucket
IngestionDestination Destination Configuration Audit Log Destination S3Bucket 
- Contains information about an Amazon S3 bucket.
- FirehoseStream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream 
- Contains information about an Amazon Data Firehose delivery stream.
- S3Bucket
IngestionDestination Destination Configuration Audit Log Destination S3Bucket 
- Contains information about an Amazon S3 bucket.
- firehoseStream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream 
- Contains information about an Amazon Data Firehose delivery stream.
- s3Bucket
IngestionDestination Destination Configuration Audit Log Destination S3Bucket 
- Contains information about an Amazon S3 bucket.
- firehoseStream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream 
- Contains information about an Amazon Data Firehose delivery stream.
- s3Bucket
IngestionDestination Destination Configuration Audit Log Destination S3Bucket 
- Contains information about an Amazon S3 bucket.
- firehose_stream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream 
- Contains information about an Amazon Data Firehose delivery stream.
- s3_bucket IngestionDestination Destination Configuration Audit Log Destination S3Bucket 
- 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
- stream_name str
- 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 IngestionDestination Processing Configuration Audit Log 
- Contains information about an audit log processing configuration.
- AuditLog IngestionDestination Processing Configuration Audit Log 
- Contains information about an audit log processing configuration.
- auditLog IngestionDestination Processing Configuration Audit Log 
- Contains information about an audit log processing configuration.
- auditLog IngestionDestination Processing Configuration Audit Log 
- Contains information about an audit log processing configuration.
- audit_log IngestionDestination Processing Configuration Audit Log 
- Contains information about an audit log processing configuration.
- auditLog Property Map
- Contains information about an audit log processing configuration.
IngestionDestinationProcessingConfigurationAuditLog, IngestionDestinationProcessingConfigurationAuditLogArgs            
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 awsTerraform Provider.