interface BasicAuthenticationCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnConnection.BasicAuthenticationCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnConnection_BasicAuthenticationCredentialsProperty |
Java | software.amazon.awscdk.services.glue.CfnConnection.BasicAuthenticationCredentialsProperty |
Python | aws_cdk.aws_glue.CfnConnection.BasicAuthenticationCredentialsProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnConnection » BasicAuthenticationCredentialsProperty |
For supplying basic auth credentials when not providing a SecretArn value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const basicAuthenticationCredentialsProperty: glue.CfnConnection.BasicAuthenticationCredentialsProperty = {
password: 'password',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | string | The password to connect to the data source. |
| username? | string | The username to connect to the data source. |
password?
Type:
string
(optional)
The password to connect to the data source.
username?
Type:
string
(optional)
The username to connect to the data source.

.NET
Go
Java
Python
TypeScript