Class: Aws::CloudTrail::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::Destination
- Defined in:
- gems/aws-sdk-cloudtrail/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.
1688 1689 1690 1691 1692 1693 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1688 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
.
1688 1689 1690 1691 1692 1693 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1688 class Destination < Struct.new( :type, :location) SENSITIVE = [] include Aws::Structure end |