interface BasicAuthenticationCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnConnectionPropsMixin_BasicAuthenticationCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » 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 { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const basicAuthenticationCredentialsProperty: datazone.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