Class: Aws::CloudTrail::Types::Destination

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#locationString

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.

Returns:

  • (String)


1957
1958
1959
1960
1961
1962
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1957

class Destination < Struct.new(
  :type,
  :location)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

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.

Returns:

  • (String)


1957
1958
1959
1960
1961
1962
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1957

class Destination < Struct.new(
  :type,
  :location)
  SENSITIVE = []
  include Aws::Structure
end