Class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty
For supplying basic auth credentials when not providing a SecretArn value.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty : CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
Syntax (vb)
Public Class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty Implements CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Glue;
var basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
Password = "password",
Username = "username"
};
Synopsis
Constructors
| BasicAuthenticationCredentialsProperty() | For supplying basic auth credentials when not providing a |
Properties
| Password | The password to connect to the data source. |
| Username | The username to connect to the data source. |
Constructors
BasicAuthenticationCredentialsProperty()
For supplying basic auth credentials when not providing a SecretArn value.
public BasicAuthenticationCredentialsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Glue;
var basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
Password = "password",
Username = "username"
};
Properties
Password
The password to connect to the data source.
public string? Password { get; set; }
Property Value
Remarks
Username
The username to connect to the data source.
public string? Username { get; set; }