Class: Aws::CognitoIdentity::Types::DeleteIdentitiesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::DeleteIdentitiesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Note:
When making an API call, you may pass DeleteIdentitiesInput data as a hash:
{
identity_ids_to_delete: ["IdentityId"], # required
}
Input to the ‘DeleteIdentities` action.
Instance Attribute Summary collapse
-
#identity_ids_to_delete ⇒ Array<String>
A list of 1-60 identities that you want to delete.
Instance Attribute Details
#identity_ids_to_delete ⇒ Array<String>
A list of 1-60 identities that you want to delete.
161 162 163 164 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 161 class DeleteIdentitiesInput < Struct.new( :identity_ids_to_delete) include Aws::Structure end |