CfnPipeExecutionLogs

class aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipeExecutionLogs

Bases: object

Builder for CfnPipeLogsMixin to generate EXECUTION_LOGS for CfnPipe.

CloudformationResource:

AWS::Pipes::Pipe

LogType:

EXECUTION_LOGS

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_pipes import mixins as pipes_mixins

cfn_pipe_execution_logs = pipes_mixins.CfnPipeExecutionLogs()
Stability:

experimental

Methods

to_destination(destination)

Delivers logs to a pre-created delivery destination.

Supported destinations are S3, CWL, FH You are responsible for setting up the correct permissions for your delivery destination, toDestination() does not set up any permissions for you. Delivery destinations that are imported from another stack using CfnDeliveryDestination.fromDeliveryDestinationArn() or CfnDeliveryDestination.fromDeliveryDestinationName() are supported by toDestination().

Parameters:

destination (IDeliveryDestinationRef)

Return type:

CfnPipeLogsMixin

to_firehose(delivery_stream, *, output_format=None)

Send logs to a Firehose Delivery Stream.

Parameters:
  • delivery_stream (IDeliveryStreamRef)

  • output_format (Optional[Firehose]) – (experimental) Format for log output, options are json,plain,raw.

Return type:

CfnPipeLogsMixin

to_log_group(log_group, *, output_format=None)

Send logs to a CloudWatch Log Group.

Parameters:
  • log_group (ILogGroupRef)

  • output_format (Optional[LogGroup]) – (experimental) Format for log output, options are plain,json.

Return type:

CfnPipeLogsMixin

to_s3(bucket, *, encryption_key=None, output_format=None)

Send logs to an S3 Bucket.

Parameters:
  • bucket (IBucketRef)

  • encryption_key (Optional[IKeyRef]) – (experimental) Encrpytion key for your delivery bucket.

  • output_format (Optional[S3]) – (experimental) Format for log output, options are json,plain,w3c,parquet.

Return type:

CfnPipeLogsMixin