interface CfnLoggingConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVSChat.Mixins.CfnLoggingConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivschat/mixins#CfnLoggingConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ivschat.mixins.CfnLoggingConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_ivschat.mixins.CfnLoggingConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ivschat » mixins » CfnLoggingConfigurationMixinProps |
Properties for CfnLoggingConfigurationPropsMixin.
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 cfnLoggingConfigurationMixinProps: ivschat_mixins.CfnLoggingConfigurationMixinProps = {
destinationConfiguration: {
cloudWatchLogs: {
logGroupName: 'logGroupName',
},
firehose: {
deliveryStreamName: 'deliveryStreamName',
},
s3: {
bucketName: 'bucketName',
},
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Destination | 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:
IResolvable | Destination
(optional)
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 .

.NET
Go
Java
Python
TypeScript