interface CfnChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudTrail.Mixins.CfnChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudtrail/mixins#CfnChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudtrail.mixins.CfnChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudtrail.mixins.CfnChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudtrail » mixins » CfnChannelMixinProps |
Properties for CfnChannelPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-channel.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudtrail_mixins } from '@aws-cdk/mixins-preview/aws-cloudtrail';
const cfnChannelMixinProps: cloudtrail_mixins.CfnChannelMixinProps = {
destinations: [{
location: 'location',
type: 'type',
}],
name: 'name',
source: 'source',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations? | IResolvable | (IResolvable | Destination)[] | One or more event data stores to which events arriving through a channel will be logged. |
| name? | string | The name of the channel. |
| source? | string | The name of the partner or external event source. |
| tags? | Cfn[] | A list of tags. |
destinations?
Type:
IResolvable | (IResolvable | Destination)[]
(optional)
One or more event data stores to which events arriving through a channel will be logged.
name?
Type:
string
(optional)
The name of the channel.
source?
Type:
string
(optional)
The name of the partner or external event source.
You cannot change this name after you create the channel. A maximum of one channel is allowed per source.
A source can be either Custom for all valid non- AWS events, or the name of a partner event source. For information about the source names for available partners, see Additional information about integration partners in the CloudTrail User Guide.
tags?
Type:
Cfn[]
(optional)
A list of tags.

.NET
Go
Java
Python
TypeScript