Class: Aws::SSO::Types::ListAccountsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSO::Types::ListAccountsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sso/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The token issued by the `CreateToken` API call.
-
#max_results ⇒ Integer
This is the number of items clients can request per page.
-
#next_token ⇒ String
(Optional) When requesting subsequent pages, this is the page token from the previous response output.
Method Summary
Methods included from Aws::Structure
#empty?, included, #initialize, #key?, new, #to_h, #to_s
Instance Attribute Details
#access_token ⇒ String
The token issued by the `CreateToken` API call. For more information, see [CreateToken] in the *IAM Identity Center OIDC API Reference Guide*.
[1]: docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html
164 165 166 167 168 169 170 |
# File 'lib/aws-sdk-sso/types.rb', line 164 class ListAccountsRequest < Struct.new( :next_token, :max_results, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |
#max_results ⇒ Integer
This is the number of items clients can request per page.
164 165 166 167 168 169 170 |
# File 'lib/aws-sdk-sso/types.rb', line 164 class ListAccountsRequest < Struct.new( :next_token, :max_results, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |
#next_token ⇒ String
(Optional) When requesting subsequent pages, this is the page token from the previous response output.
164 165 166 167 168 169 170 |
# File 'lib/aws-sdk-sso/types.rb', line 164 class ListAccountsRequest < Struct.new( :next_token, :max_results, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |