published on Thursday, Aug 20, 2026 by Pulumi
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:
- App
Bundle stringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- Destination
Configuration IngestionDestination Destination Configuration - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - Ingestion
Arn string - Amazon Resource Name (ARN) of the ingestion to use for the request.
- Processing
Configuration IngestionDestination Processing Configuration Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Ingestion
Destination Timeouts
- App
Bundle stringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- Destination
Configuration IngestionDestination Destination Configuration Args - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - Ingestion
Arn string - Amazon Resource Name (ARN) of the ingestion to use for the request.
- Processing
Configuration IngestionDestination Processing Configuration Args Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Ingestion
Destination Timeouts Args
- app_
bundle_ stringarn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- destination_
configuration object - Configuration for the destination of ingested data. See
destinationConfigurationBlock 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
processingConfigurationBlock below.The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts object
- app
Bundle StringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- destination
Configuration IngestionDestination Destination Configuration - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion
Arn String - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing
Configuration IngestionDestination Processing Configuration Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Ingestion
Destination Timeouts
- app
Bundle stringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- destination
Configuration IngestionDestination Destination Configuration - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion
Arn string - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing
Configuration IngestionDestination Processing Configuration Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Ingestion
Destination Timeouts
- app_
bundle_ strarn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- destination_
configuration IngestionDestination Destination Configuration Args - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion_
arn str - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing_
configuration IngestionDestination Processing Configuration Args Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Ingestion
Destination Timeouts Args
- app
Bundle StringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- destination
Configuration Property Map - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion
Arn String - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing
Configuration Property Map Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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,
region: Optional[str] = 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}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.
- App
Bundle stringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- Arn string
- ARN of the Ingestion Destination.
- Destination
Configuration IngestionDestination Destination Configuration - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - Ingestion
Arn string - Amazon Resource Name (ARN) of the ingestion to use for the request.
- Processing
Configuration IngestionDestination Processing Configuration Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - Timeouts
Ingestion
Destination Timeouts
- App
Bundle stringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- Arn string
- ARN of the Ingestion Destination.
- Destination
Configuration IngestionDestination Destination Configuration Args - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - Ingestion
Arn string - Amazon Resource Name (ARN) of the ingestion to use for the request.
- Processing
Configuration IngestionDestination Processing Configuration Args Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - Timeouts
Ingestion
Destination Timeouts Args
- app_
bundle_ stringarn - 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
destinationConfigurationBlock 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
processingConfigurationBlock below.The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - timeouts object
- app
Bundle StringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- arn String
- ARN of the Ingestion Destination.
- destination
Configuration IngestionDestination Destination Configuration - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion
Arn String - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing
Configuration IngestionDestination Processing Configuration Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - timeouts
Ingestion
Destination Timeouts
- app
Bundle stringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- arn string
- ARN of the Ingestion Destination.
- destination
Configuration IngestionDestination Destination Configuration - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion
Arn string - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing
Configuration IngestionDestination Processing Configuration Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - timeouts
Ingestion
Destination Timeouts
- app_
bundle_ strarn - 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 - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion_
arn str - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing_
configuration IngestionDestination Processing Configuration Args Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - timeouts
Ingestion
Destination Timeouts Args
- app
Bundle StringArn - Amazon Resource Name (ARN) of the app bundle to use for the request.
- arn String
- ARN of the Ingestion Destination.
- destination
Configuration Property Map - Configuration for the destination of ingested data. See
destinationConfigurationBlock below. - ingestion
Arn String - Amazon Resource Name (ARN) of the ingestion to use for the request.
- processing
Configuration Property Map Configuration for how ingested data is processed. See
processingConfigurationBlock below.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration 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
defaultTagsconfiguration block. - timeouts Property Map
Supporting Types
IngestionDestinationDestinationConfiguration, IngestionDestinationDestinationConfigurationArgs
- Audit
Log IngestionDestination Destination Configuration Audit Log - Audit log destination configuration. See
destination_configuration.audit_logBlock below.
- Audit
Log IngestionDestination Destination Configuration Audit Log - Audit log destination configuration. See
destination_configuration.audit_logBlock below.
- audit
Log IngestionDestination Destination Configuration Audit Log - Audit log destination configuration. See
destination_configuration.audit_logBlock below.
- audit
Log IngestionDestination Destination Configuration Audit Log - Audit log destination configuration. See
destination_configuration.audit_logBlock below.
- audit_
log IngestionDestination Destination Configuration Audit Log - Audit log destination configuration. See
destination_configuration.audit_logBlock below.
- audit
Log Property Map - Audit log destination configuration. See
destination_configuration.audit_logBlock below.
IngestionDestinationDestinationConfigurationAuditLog, IngestionDestinationDestinationConfigurationAuditLogArgs
- Destination
Ingestion
Destination Destination Configuration Audit Log Destination - Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
- Destination
Ingestion
Destination Destination Configuration Audit Log Destination - Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
- destination object
- Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
- destination
Ingestion
Destination Destination Configuration Audit Log Destination - Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
- destination
Ingestion
Destination Destination Configuration Audit Log Destination - Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
- destination
Ingestion
Destination Destination Configuration Audit Log Destination - Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
- destination Property Map
- Destination for the audit log. Only one destination, either
firehoseStreamors3Bucket, can be specified. Seedestination_configuration.audit_log.destinationBlock below.
IngestionDestinationDestinationConfigurationAuditLogDestination, IngestionDestinationDestinationConfigurationAuditLogDestinationArgs
- Firehose
Stream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - S3Bucket
Ingestion
Destination Destination Configuration Audit Log Destination S3Bucket - Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
- Firehose
Stream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - S3Bucket
Ingestion
Destination Destination Configuration Audit Log Destination S3Bucket - Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
- firehose_
stream object - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - s3_
bucket object - Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
- firehose
Stream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - s3Bucket
Ingestion
Destination Destination Configuration Audit Log Destination S3Bucket - Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
- firehose
Stream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - s3Bucket
Ingestion
Destination Destination Configuration Audit Log Destination S3Bucket - Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
- firehose_
stream IngestionDestination Destination Configuration Audit Log Destination Firehose Stream - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - s3_
bucket IngestionDestination Destination Configuration Audit Log Destination S3Bucket - Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
- firehose
Stream Property Map - Amazon Data Firehose delivery stream destination. See
destination_configuration.audit_log.destination.firehose_streamBlock below. - s3Bucket Property Map
- Amazon S3 bucket destination. See
destination_configuration.audit_log.destination.s3_bucketBlock below.
IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream, IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs
- Stream
Name string - Name of the Amazon Data Firehose delivery stream.
- Stream
Name string - Name of the Amazon Data Firehose delivery stream.
- stream_
name string - Name of the Amazon Data Firehose delivery stream.
- stream
Name String - Name of the Amazon Data Firehose delivery stream.
- stream
Name string - Name of the Amazon Data Firehose delivery stream.
- stream_
name str - Name of the Amazon Data Firehose delivery stream.
- stream
Name String - Name of the Amazon Data Firehose delivery stream.
IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket, IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs
- Bucket
Name 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.
- bucket_
name 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.
- bucket
Name 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.
- bucket
Name String - Name of the Amazon S3 bucket.
- prefix String
- Object key to use.
IngestionDestinationProcessingConfiguration, IngestionDestinationProcessingConfigurationArgs
- Audit
Log IngestionDestination Processing Configuration Audit Log - Audit log processing configuration. See
processing_configuration.audit_logBlock below.
- Audit
Log IngestionDestination Processing Configuration Audit Log - Audit log processing configuration. See
processing_configuration.audit_logBlock below.
- audit
Log IngestionDestination Processing Configuration Audit Log - Audit log processing configuration. See
processing_configuration.audit_logBlock below.
- audit
Log IngestionDestination Processing Configuration Audit Log - Audit log processing configuration. See
processing_configuration.audit_logBlock below.
- audit_
log IngestionDestination Processing Configuration Audit Log - Audit log processing configuration. See
processing_configuration.audit_logBlock below.
- audit
Log Property Map - Audit log processing configuration. See
processing_configuration.audit_logBlock below.
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 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.
published on Thursday, Aug 20, 2026 by Pulumi