Class: Aws::CloudTrail::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::Destination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Contains information about the destination receiving events.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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.
Instance Attribute Details
#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. For service-linked channels, the location is the name of the Amazon Web Services service.
1526 1527 1528 1529 1530 1531 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 1526 class Destination < Struct.new( :type, :location) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
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`.
1526 1527 1528 1529 1530 1531 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 1526 class Destination < Struct.new( :type, :location) SENSITIVE = [] include Aws::Structure end |