interface DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudTrail.CfnChannel.DestinationProperty |
Java | software.amazon.awscdk.services.cloudtrail.CfnChannel.DestinationProperty |
Python | aws_cdk.aws_cloudtrail.CfnChannel.DestinationProperty |
TypeScript | @aws-cdk/aws-cloudtrail » CfnChannel » 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 * as cloudtrail from '@aws-cdk/aws-cloudtrail';
const destinationProperty: cloudtrail.CfnChannel.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
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
The type of destination for events arriving from a channel.
For channels used for a CloudTrail Lake integration, the value is EventDataStore . For service-linked channels, the value is AWS_SERVICE .

.NET
Java
Python
TypeScript