Class: Aws::SSO::Types::ListAccountsRequest

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

Overview

Note:

When making an API call, you may pass ListAccountsRequest data as a hash:

{
  next_token: "NextTokenType",
  max_results: 1,
  access_token: "AccessTokenType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

The token issued by the ‘CreateToken` API call. For more information, see [CreateToken] in the *AWS SSO OIDC API Reference Guide*.

[1]: docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html

Returns:

  • (String)


184
185
186
187
188
189
# File 'lib/aws-sdk-sso/types.rb', line 184

class ListAccountsRequest < Struct.new(
  :next_token,
  :max_results,
  :access_token)
  include Aws::Structure
end

#max_resultsInteger

This is the number of items clients can request per page.

Returns:

  • (Integer)


184
185
186
187
188
189
# File 'lib/aws-sdk-sso/types.rb', line 184

class ListAccountsRequest < Struct.new(
  :next_token,
  :max_results,
  :access_token)
  include Aws::Structure
end

#next_tokenString

(Optional) When requesting subsequent pages, this is the page token from the previous response output.

Returns:

  • (String)


184
185
186
187
188
189
# File 'lib/aws-sdk-sso/types.rb', line 184

class ListAccountsRequest < Struct.new(
  :next_token,
  :max_results,
  :access_token)
  include Aws::Structure
end