Class: Aws::AlexaForBusiness::Types::DeleteUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::DeleteUserRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass DeleteUserRequest data as a hash:
{
user_arn: "Arn",
enrollment_id: "EnrollmentId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enrollment_id ⇒ String
The ARN of the user's enrollment in the organization.
-
#user_arn ⇒ String
The ARN of the user to delete in the organization.
Instance Attribute Details
#enrollment_id ⇒ String
The ARN of the user's enrollment in the organization. Required.
2035 2036 2037 2038 2039 2040 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 2035 class DeleteUserRequest < Struct.new( :user_arn, :enrollment_id) SENSITIVE = [] include Aws::Structure end |
#user_arn ⇒ String
The ARN of the user to delete in the organization. Required.
2035 2036 2037 2038 2039 2040 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 2035 class DeleteUserRequest < Struct.new( :user_arn, :enrollment_id) SENSITIVE = [] include Aws::Structure end |