Class: Aws::Appflow::Types::BasicAuthCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::BasicAuthCredentials
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass BasicAuthCredentials data as a hash:
{
username: "Username", # required
password: "Password", # required
}
The basic auth credentials required for basic authentication.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#password ⇒ String
The password to use to connect to a resource.
-
#username ⇒ String
The username to use to connect to a resource.
Instance Attribute Details
#password ⇒ String
The password to use to connect to a resource.
246 247 248 249 250 251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 246 class BasicAuthCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |
#username ⇒ String
The username to use to connect to a resource.
246 247 248 249 250 251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 246 class BasicAuthCredentials < Struct.new( :username, :password) SENSITIVE = [:password] include Aws::Structure end |