interface DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudTrail.Mixins.CfnChannelPropsMixin.DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudtrail/mixins#CfnChannelPropsMixin_DestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudtrail.mixins.CfnChannelPropsMixin.DestinationProperty |
Python | aws_cdk.mixins_preview.aws_cloudtrail.mixins.CfnChannelPropsMixin.DestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudtrail » mixins » CfnChannelPropsMixin » DestinationProperty |
Contains information about the destination receiving events.
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 destinationProperty: cloudtrail_mixins.CfnChannelPropsMixin.DestinationProperty = {
location: 'location',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| location? | string | For channels used for a CloudTrail Lake integration, the location is the ARN of an event data store that receives events from a channel. |
| type? | string | The type of destination for events arriving from a channel. |
location?
Type:
string
(optional)
For channels used for a CloudTrail Lake integration, the location is the ARN of an event data store that receives events from a channel.
For service-linked channels, the location is the name of the AWS service.
type?
Type:
string
(optional)
The type of destination for events arriving from a channel.
For channels used for a CloudTrail Lake integration, the value is EVENT_DATA_STORE . For service-linked channels, the value is AWS_SERVICE .

.NET
Go
Java
Python
TypeScript