Class: Aws::CloudWatchEvents::Types::UpdateConnectionBasicAuthRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvents::Types::UpdateConnectionBasicAuthRequestParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevents/types.rb
Overview
Contains the Basic authorization parameters for the connection.
Constant Summary collapse
- SENSITIVE =
[:password]
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.
4251 4252 4253 4254 4255 4256 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 4251 class UpdateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The user name to use for Basic authorization.
4251 4252 4253 4254 4255 4256 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 4251 class UpdateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |