Class: Aws::EventBridge::Types::CreateConnectionBasicAuthRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::CreateConnectionBasicAuthRequestParameters
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass CreateConnectionBasicAuthRequestParameters data as a hash:
{
username: "AuthHeaderParameters", # required
password: "AuthHeaderParameters", # required
}
Contains the Basic authorization parameters to use 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.
1038 1039 1040 1041 1042 1043 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 1038 class CreateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |
#username ⇒ String
The user name to use for Basic authorization.
1038 1039 1040 1041 1042 1043 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 1038 class CreateConnectionBasicAuthRequestParameters < Struct.new( :username, :password) SENSITIVE = [] include Aws::Structure end |