Class: Aws::Account::Types::ListRegionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Account::Types::ListRegionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-account/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If there is more data to be returned, this will be populated.
-
#regions ⇒ Array<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.
Instance Attribute Details
#next_token ⇒ String
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`.
697 698 699 700 701 702 |
# File 'lib/aws-sdk-account/types.rb', line 697 class ListRegionsResponse < Struct.new( :next_token, :regions) SENSITIVE = [] include Aws::Structure end |
#regions ⇒ Array<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.
697 698 699 700 701 702 |
# File 'lib/aws-sdk-account/types.rb', line 697 class ListRegionsResponse < Struct.new( :next_token, :regions) SENSITIVE = [] include Aws::Structure end |