interface BasicAuthCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnConnectorProfilePropsMixin_BasicAuthCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const basicAuthCredentialsProperty: appflow.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