Class: Aws::EventBridge::Types::UpdateConnectionBasicAuthRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::UpdateConnectionBasicAuthRequestParameters
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass UpdateConnectionBasicAuthRequestParameters data as a hash:
{
username: "AuthHeaderParameters",
password: "AuthHeaderParameters",
}
Contains the Basic authorization parameters for the connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#password ⇒ String
The password associated with the user name to use for Basic authorization.
-
#username ⇒ String
The user name to use for Basic authorization.
Instance Attribute Details
#password ⇒ String
The password associated with the user name to use for Basic authorization.
6124 6125 6126 6127 6128 6129 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6124 class UpdateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |
#username ⇒ String
The user name to use for Basic authorization.
6124 6125 6126 6127 6128 6129 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 6124 class UpdateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |