interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVSChat.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivschat#CfnLoggingConfigurationPropsMixin_DestinationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivschat.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ivschat.CfnLoggingConfigurationPropsMixin.DestinationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivschat » 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 { aws_ivschat as ivschat } from '@aws-cdk/cfn-property-mixins';
const destinationConfigurationProperty: ivschat.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