Class: Aws::RAM::Types::ListPrincipalsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RAM::Types::ListPrincipalsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ram/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If present, this value indicates that more output is available than is included in the current response.
-
#principals ⇒ Array<Types::Principal>
An array of objects that contain the details about the principals.
Instance Attribute Details
#next_token ⇒ String
If present, this value indicates that more output is available than is included in the current response. Use this value in the ‘NextToken` request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the `NextToken` response element comes back as `null`. This indicates that this is the last page of results.
2087 2088 2089 2090 2091 2092 |
# File 'lib/aws-sdk-ram/types.rb', line 2087 class ListPrincipalsResponse < Struct.new( :principals, :next_token) SENSITIVE = [] include Aws::Structure end |
#principals ⇒ Array<Types::Principal>
An array of objects that contain the details about the principals.
2087 2088 2089 2090 2091 2092 |
# File 'lib/aws-sdk-ram/types.rb', line 2087 class ListPrincipalsResponse < Struct.new( :principals, :next_token) SENSITIVE = [] include Aws::Structure end |