interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IVSChat.CfnLoggingConfiguration.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsivschat#CfnLoggingConfiguration_DestinationConfigurationProperty |
Java | software.amazon.awscdk.services.ivschat.CfnLoggingConfiguration.DestinationConfigurationProperty |
Python | aws_cdk.aws_ivschat.CfnLoggingConfiguration.DestinationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ivschat » CfnLoggingConfiguration » 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-lib';
const destinationConfigurationProperty: ivschat.CfnLoggingConfiguration.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