Class: Aws::QuickSight::Types::BasicAuthConnectionMetadata

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

Overview

Metadata for basic authentication using username and password.

Constant Summary collapse

SENSITIVE =
[:username, :password]

Instance Attribute Summary collapse

Instance Attribute Details

#base_endpointString

The base URL endpoint for the external service.

Returns:

  • (String)


3770
3771
3772
3773
3774
3775
3776
# File 'lib/aws-sdk-quicksight/types.rb', line 3770

class BasicAuthConnectionMetadata < Struct.new(
  :base_endpoint,
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end

#passwordString

The password for basic authentication.

Returns:

  • (String)


3770
3771
3772
3773
3774
3775
3776
# File 'lib/aws-sdk-quicksight/types.rb', line 3770

class BasicAuthConnectionMetadata < Struct.new(
  :base_endpoint,
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end

#usernameString

The username for basic authentication.

Returns:

  • (String)


3770
3771
3772
3773
3774
3775
3776
# File 'lib/aws-sdk-quicksight/types.rb', line 3770

class BasicAuthConnectionMetadata < Struct.new(
  :base_endpoint,
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end