1. Packages
  2. AWS
  3. API Docs
  4. appfabric
  5. IngestionDestination
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

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,
                },
            },
        },
    },
});
Copy
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"],
                },
            },
        },
    })
Copy
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
	})
}
Copy
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,
                    },
                },
            },
        },
    });

});
Copy
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());

    }
}
Copy
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}
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. IngestionDestinationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. IngestionDestinationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IngestionDestinationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
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",
    })
Copy
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",
    },
});
Copy
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
Copy

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

Outputs

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

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

Look up Existing IngestionDestination Resource

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

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

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

Deprecated: Please use tags instead.

timeouts Property Map

Supporting Types

IngestionDestinationDestinationConfiguration
, IngestionDestinationDestinationConfigurationArgs

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

IngestionDestinationDestinationConfigurationAuditLog
, IngestionDestinationDestinationConfigurationAuditLogArgs

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

IngestionDestinationDestinationConfigurationAuditLogDestination
, IngestionDestinationDestinationConfigurationAuditLogDestinationArgs

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

IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStream
, IngestionDestinationDestinationConfigurationAuditLogDestinationFirehoseStreamArgs

StreamName This property is required. string
StreamName This property is required. string
streamName This property is required. String
streamName This property is required. string
stream_name This property is required. str
streamName This property is required. String

IngestionDestinationDestinationConfigurationAuditLogDestinationS3Bucket
, IngestionDestinationDestinationConfigurationAuditLogDestinationS3BucketArgs

BucketName This property is required. string
Prefix string
The object key to use.
BucketName This property is required. string
Prefix string
The object key to use.
bucketName This property is required. String
prefix String
The object key to use.
bucketName This property is required. string
prefix string
The object key to use.
bucket_name This property is required. str
prefix str
The object key to use.
bucketName This property is required. String
prefix String
The object key to use.

IngestionDestinationProcessingConfiguration
, IngestionDestinationProcessingConfigurationArgs

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

IngestionDestinationProcessingConfigurationAuditLog
, IngestionDestinationProcessingConfigurationAuditLogArgs

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

IngestionDestinationTimeouts
, IngestionDestinationTimeoutsArgs

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

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.