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

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

Overview

Note:

When making an API call, you may pass DisableUserRequest data as a hash:

{
  user_name: "Username", # required
  authentication_type: "API", # required, accepts API, SAML, USERPOOL
}

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

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

Returns:

  • (String)


1655
1656
1657
1658
1659
# File 'lib/aws-sdk-appstream/types.rb', line 1655

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

#user_nameString

The email address of the user.

Returns:

  • (String)


1655
1656
1657
1658
1659
# File 'lib/aws-sdk-appstream/types.rb', line 1655

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