Class: Aws::CognitoIdentityProvider::Types::AdminListGroupsForUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AdminListGroupsForUserRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AdminListGroupsForUserRequest data as a hash:
{
username: "UsernameType", # required
user_pool_id: "UserPoolIdType", # required
limit: 1,
next_token: "PaginationKey",
}
Constant Summary collapse
- SENSITIVE =
[:username]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The limit of the request to list groups.
-
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
-
#user_pool_id ⇒ String
The user pool ID for the user pool.
-
#username ⇒ String
The username for the user.
Instance Attribute Details
#limit ⇒ Integer
The limit of the request to list groups.
1436 1437 1438 1439 1440 1441 1442 1443 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 1436 class AdminListGroupsForUserRequest < Struct.new( :username, :user_pool_id, :limit, :next_token) SENSITIVE = [:username] include Aws::Structure end |
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
1436 1437 1438 1439 1440 1441 1442 1443 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 1436 class AdminListGroupsForUserRequest < Struct.new( :username, :user_pool_id, :limit, :next_token) SENSITIVE = [:username] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID for the user pool.
1436 1437 1438 1439 1440 1441 1442 1443 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 1436 class AdminListGroupsForUserRequest < Struct.new( :username, :user_pool_id, :limit, :next_token) SENSITIVE = [:username] include Aws::Structure end |
#username ⇒ String
The username for the user.
1436 1437 1438 1439 1440 1441 1442 1443 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 1436 class AdminListGroupsForUserRequest < Struct.new( :username, :user_pool_id, :limit, :next_token) SENSITIVE = [:username] include Aws::Structure end |