Class: Aws::CloudTrail::Types::ListTrailsResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudtrail/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


3578
3579
3580
3581
3582
3583
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3578

class ListTrailsResponse < Struct.new(
  :trails,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#trailsArray<Types::TrailInfo>

Returns the name, ARN, and home Region of trails in the current account.

Returns:



3578
3579
3580
3581
3582
3583
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3578

class ListTrailsResponse < Struct.new(
  :trails,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end