Class: Aws::EventBridge::Types::UpdateConnectionBasicAuthRequestParameters

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

Overview

The Basic authorization parameters for the connection.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The password associated with the user name to use for Basic authorization.

Returns:

  • (String)


5480
5481
5482
5483
5484
5485
# File 'lib/aws-sdk-eventbridge/types.rb', line 5480

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

#usernameString

The user name to use for Basic authorization.

Returns:

  • (String)


5480
5481
5482
5483
5484
5485
# File 'lib/aws-sdk-eventbridge/types.rb', line 5480

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