Class: Aws::CognitoIdentityProvider::Types::AdminRemoveUserFromGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AdminRemoveUserFromGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AdminRemoveUserFromGroupRequest data as a hash:
{
user_pool_id: "UserPoolIdType", # required
username: "UsernameType", # required
group_name: "GroupNameType", # required
}
Constant Summary collapse
- SENSITIVE =
[:username]
Instance Attribute Summary collapse
-
#group_name ⇒ String
The group name.
-
#user_pool_id ⇒ String
The user pool ID for the user pool.
-
#username ⇒ String
The username for the user.
Instance Attribute Details
#group_name ⇒ String
The group name.
1540 1541 1542 1543 1544 1545 1546 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 1540 class AdminRemoveUserFromGroupRequest < Struct.new( :user_pool_id, :username, :group_name) SENSITIVE = [:username] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID for the user pool.
1540 1541 1542 1543 1544 1545 1546 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 1540 class AdminRemoveUserFromGroupRequest < Struct.new( :user_pool_id, :username, :group_name) SENSITIVE = [:username] include Aws::Structure end |
#username ⇒ String
The username for the user.
1540 1541 1542 1543 1544 1545 1546 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 1540 class AdminRemoveUserFromGroupRequest < Struct.new( :user_pool_id, :username, :group_name) SENSITIVE = [:username] include Aws::Structure end |