Class: Aws::CognitoIdentityProvider::Types::AdminUserGlobalSignOutRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AdminUserGlobalSignOutRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AdminUserGlobalSignOutRequest data as a hash:
{
user_pool_id: "UserPoolIdType", # required
username: "UsernameType", # required
}
The request to sign out of all devices, as an administrator.
Constant Summary collapse
- SENSITIVE =
[:username]
Instance Attribute Summary collapse
-
#user_pool_id ⇒ String
The user pool ID.
-
#username ⇒ String
The user name.
Instance Attribute Details
#user_pool_id ⇒ String
The user pool ID.
2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2155 class AdminUserGlobalSignOutRequest < Struct.new( :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |
#username ⇒ String
The user name.
2155 2156 2157 2158 2159 2160 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2155 class AdminUserGlobalSignOutRequest < Struct.new( :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |