Class: Aws::Appflow::Types::BasicAuthCredentials

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

Overview

The basic auth credentials required for basic authentication.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password to use to connect to a resource.

Returns:

  • (String)


217
218
219
220
221
222
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 217

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

#usernameString

The username to use to connect to a resource.

Returns:

  • (String)


217
218
219
220
221
222
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 217

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