interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVSChat.Mixins.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivschat/mixins#CfnLoggingConfigurationPropsMixin_DestinationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ivschat.mixins.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ivschat.mixins.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ivschat » mixins » CfnLoggingConfigurationPropsMixin » DestinationConfigurationProperty |
The DestinationConfiguration property type describes a location where chat logs will be stored.
Each member represents the configuration of one log destination. For logging, you define only one type of destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ivschat_mixins } from '@aws-cdk/mixins-preview/aws-ivschat';
const destinationConfigurationProperty: ivschat_mixins.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty = {
cloudWatchLogs: {
logGroupName: 'logGroupName',
},
firehose: {
deliveryStreamName: 'deliveryStreamName',
},
s3: {
bucketName: 'bucketName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | An Amazon CloudWatch Logs destination configuration where chat activity will be logged. |
| firehose? | IResolvable | Firehose | An Amazon Kinesis Data Firehose destination configuration where chat activity will be logged. |
| s3? | IResolvable | S3 | An Amazon S3 destination configuration where chat activity will be logged. |
cloudWatchLogs?
Type:
IResolvable | Cloud
(optional)
An Amazon CloudWatch Logs destination configuration where chat activity will be logged.
firehose?
Type:
IResolvable | Firehose
(optional)
An Amazon Kinesis Data Firehose destination configuration where chat activity will be logged.
s3?
Type:
IResolvable | S3
(optional)
An Amazon S3 destination configuration where chat activity will be logged.

.NET
Go
Java
Python
TypeScript