Class: Aws::CloudTrail::Types::DescribeTrailsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::DescribeTrailsResponse
- Includes:
- Structure
- Defined in:
- 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.
1502 1503 1504 1505 1506 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 1502 class DescribeTrailsResponse < Struct.new( :trail_list) SENSITIVE = [] include Aws::Structure end |