Class: Aws::Account::Types::ListRegionsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-account/lib/aws-sdk-account/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

If there is more data to be returned, this will be populated. It should be passed into the next-token request parameter of list-regions.

Returns:

  • (String)


585
586
587
588
589
590
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 585

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

#regionsArray<Types::Region>

This is a list of Regions for a given account, or if the filtered parameter was used, a list of Regions that match the filter criteria set in the filter parameter.

Returns:



585
586
587
588
589
590
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 585

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