Class: Aws::CloudTrail::Types::DescribeTrailsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::DescribeTrailsResponse
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
Returns the objects or data listed below if successful. Otherwise, returns an error.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#trail_list ⇒ Array<Types::Trail>
The list of trail objects.
Instance Attribute Details
#trail_list ⇒ Array<Types::Trail>
The list of trail objects. Trail objects with string values are only
returned if values for the objects exist in a trail's
configuration. For example, SNSTopicName
and SNSTopicARN
are
only returned in results if a trail is configured to send SNS
notifications. Similarly, KMSKeyId
only appears in results if a
trail's log files are encrypted with KMS customer managed keys.
1590 1591 1592 1593 1594 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1590 class DescribeTrailsResponse < Struct.new( :trail_list) SENSITIVE = [] include Aws::Structure end |