Class: Aws::AppStream::Types::DisableUserRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:user_name]

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

The authentication type for the user. You must specify USERPOOL.

Returns:

  • (String)


2999
3000
3001
3002
3003
3004
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2999

class DisableUserRequest < Struct.new(
  :user_name,
  :authentication_type)
  SENSITIVE = [:user_name]
  include Aws::Structure
end

#user_nameString

The email address of the user.

Users' email addresses are case-sensitive.

Returns:

  • (String)


2999
3000
3001
3002
3003
3004
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2999

class DisableUserRequest < Struct.new(
  :user_name,
  :authentication_type)
  SENSITIVE = [:user_name]
  include Aws::Structure
end