interface CfnLoggingConfigurationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IVSChat.CfnLoggingConfigurationProps |
Java | software.amazon.awscdk.services.ivschat.CfnLoggingConfigurationProps |
Python | aws_cdk.aws_ivschat.CfnLoggingConfigurationProps |
TypeScript | @aws-cdk/aws-ivschat » CfnLoggingConfigurationProps |
Properties for defining a CfnLoggingConfiguration
.
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 cfnLoggingConfigurationProps: ivschat.CfnLoggingConfigurationProps = {
destinationConfiguration: {
cloudWatchLogs: {
logGroupName: 'logGroupName',
},
firehose: {
deliveryStreamName: 'deliveryStreamName',
},
s3: {
bucketName: 'bucketName',
},
},
// the properties below are optional
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
destination | Destination | IResolvable | The DestinationConfiguration is a complex type that contains information about where chat content will be logged. |
name? | string | Logging-configuration name. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
destinationConfiguration
Type:
Destination
|
IResolvable
The DestinationConfiguration is a complex type that contains information about where chat content will be logged.
name?
Type:
string
(optional)
Logging-configuration name.
The value does not need to be unique.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .