Class: Aws::CloudTrail::Types::ListTrailsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::ListTrailsResponse
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token to use to get the next page of results after a previous API call.
-
#trails ⇒ Array<Types::TrailInfo>
Returns the name, ARN, and home region of trails in the current account.
Instance Attribute Details
#next_token ⇒ String
The token to use to get the next page of results after a previous API call. If the token does not appear, there are no more results to return. The token must be passed in with the same parameters as the previous call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.
3115 3116 3117 3118 3119 3120 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 3115 class ListTrailsResponse < Struct.new( :trails, :next_token) SENSITIVE = [] include Aws::Structure end |
#trails ⇒ Array<Types::TrailInfo>
Returns the name, ARN, and home region of trails in the current account.
3115 3116 3117 3118 3119 3120 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 3115 class ListTrailsResponse < Struct.new( :trails, :next_token) SENSITIVE = [] include Aws::Structure end |