class CfnTransformerB2biExecutionLogs
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnTransformerB2biExecutionLogs |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnTransformerB2biExecutionLogs |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnTransformerB2biExecutionLogs |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnTransformerB2biExecutionLogs |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnTransformerB2biExecutionLogs |
Builder for CfnTransformerLogsMixin to generate B2BI_EXECUTION_LOGS for CfnTransformer.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as b2bi_mixins } from '@aws-cdk/mixins-preview/aws-b2bi';
const cfnTransformerB2biExecutionLogs = new b2bi_mixins.CfnTransformerB2biExecutionLogs();
Initializer
new CfnTransformerB2biExecutionLogs()
Methods
| Name | Description |
|---|---|
| to | Delivers logs to a pre-created delivery destination. |
| to | Send logs to a Firehose Delivery Stream. |
| to | Send logs to a CloudWatch Log Group. |
| to | Send logs to an S3 Bucket. |
toDestination(destination)
public toDestination(destination: IDeliveryDestinationRef): CfnTransformerLogsMixin
Parameters
- destination
IDeliveryDestination Ref
Returns
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().
toFirehose(deliveryStream, props?)
public toFirehose(deliveryStream: IDeliveryStreamRef, props?: CfnTransformerB2biExecutionLogsFirehoseProps): CfnTransformerLogsMixin
Parameters
- deliveryStream
IDeliveryStream Ref - props
Cfn— Additional properties that are optionally used in log delivery for Firehose destinations.Transformer B2bi Execution Logs Firehose Props
Returns
Send logs to a Firehose Delivery Stream.
toLogGroup(logGroup, props?)
public toLogGroup(logGroup: ILogGroupRef, props?: CfnTransformerB2biExecutionLogsLogGroupProps): CfnTransformerLogsMixin
Parameters
- logGroup
ILogGroup Ref - props
Cfn— Additional properties that are optionally used in log delivery for Log Group destinations.Transformer B2bi Execution Logs Log Group Props
Returns
Send logs to a CloudWatch Log Group.
toS3(bucket, props?)
public toS3(bucket: IBucketRef, props?: CfnTransformerB2biExecutionLogsS3Props): CfnTransformerLogsMixin
Parameters
- bucket
IBucketRef - props
Cfn— Additional properties that are optionally used in log delivery for S3 destinations.Transformer B2bi Execution Logs S3 Props
Returns
Send logs to an S3 Bucket.

.NET
Go
Java
Python
TypeScript