interface BasicAuthenticationCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnConnectionPropsMixin_BasicAuthenticationCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnConnectionPropsMixin » BasicAuthenticationCredentialsProperty |
The basic authentication credentials of a connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const basicAuthenticationCredentialsProperty: datazone_mixins.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty = {
password: 'password',
userName: 'userName',
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | string | The password for a connection. |
| user | string | The user name for the connecion. |
password?
Type:
string
(optional)
The password for a connection.
userName?
Type:
string
(optional)
The user name for the connecion.

.NET
Go
Java
Python
TypeScript