LogDestinationConfig

class aws_cdk.aws_pipes_alpha.LogDestinationConfig(*, parameters)

Bases: object

(experimental) Log destination configuration.

Parameters:

parameters (Union[LogDestinationParameters, Dict[str, Any]]) – (experimental) Get the log destination configuration parameters.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_pipes_alpha as pipes_alpha

log_destination_config = pipes_alpha.LogDestinationConfig(
    parameters=pipes_alpha.LogDestinationParameters(
        cloudwatch_logs_log_destination=CloudwatchLogsLogDestinationProperty(
            log_group_arn="logGroupArn"
        ),
        firehose_log_destination=FirehoseLogDestinationProperty(
            delivery_stream_arn="deliveryStreamArn"
        ),
        s3_log_destination=S3LogDestinationProperty(
            bucket_name="bucketName",
            bucket_owner="bucketOwner",
            output_format="outputFormat",
            prefix="prefix"
        )
    )
)

Attributes

parameters

(experimental) Get the log destination configuration parameters.

Stability:

experimental