interface DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudTrail.CfnChannelPropsMixin.DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudtrail#CfnChannelPropsMixin_DestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudtrail.CfnChannelPropsMixin.DestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudtrail.CfnChannelPropsMixin.DestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudtrail » 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 { aws_cloudtrail as cloudtrail } from '@aws-cdk/cfn-property-mixins';
const destinationProperty: cloudtrail.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