interface BasicAuthCredentialsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.BasicAuthCredentialsProperty |
Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.BasicAuthCredentialsProperty |
Python | aws_cdk.aws_appflow.CfnConnectorProfile.BasicAuthCredentialsProperty |
TypeScript | @aws-cdk/aws-appflow » CfnConnectorProfile » 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 * as appflow from '@aws-cdk/aws-appflow';
const basicAuthCredentialsProperty: appflow.CfnConnectorProfile.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
The password to use to connect to a resource.
username
Type:
string
The username to use to connect to a resource.