interface DestinationConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IVSChat.CfnLoggingConfiguration.DestinationConfigurationProperty |
Java | software.amazon.awscdk.services.ivschat.CfnLoggingConfiguration.DestinationConfigurationProperty |
Python | aws_cdk.aws_ivschat.CfnLoggingConfiguration.DestinationConfigurationProperty |
TypeScript | @aws-cdk/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 * as ivschat from '@aws-cdk/aws-ivschat';
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.