interface BasicAuthCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_BasicAuthCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » BasicAuthCredentialsProperty |
The basic auth credentials required for basic authentication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const basicAuthCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty = {
password: 'password',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | string | The password to use to connect to a resource. |
| username? | string | The username to use to connect to a resource. |
password?
Type:
string
(optional)
The password to use to connect to a resource.
username?
Type:
string
(optional)
The username to use to connect to a resource.

.NET
Go
Java
Python
TypeScript