Class CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty
The basic auth credentials required for basic authentication.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppFlow
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty : CfnConnectorProfilePropsMixin.IBasicAuthCredentialsProperty
Syntax (vb)
Public Class CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty Implements CfnConnectorProfilePropsMixin.IBasicAuthCredentialsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppFlow;
var basicAuthCredentialsProperty = new BasicAuthCredentialsProperty {
Password = "password",
Username = "username"
};
Synopsis
Constructors
| BasicAuthCredentialsProperty() | The basic auth credentials required for basic authentication. |
Properties
| Password | The password to use to connect to a resource. |
| Username | The username to use to connect to a resource. |
Constructors
BasicAuthCredentialsProperty()
The basic auth credentials required for basic authentication.
public BasicAuthCredentialsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppFlow;
var basicAuthCredentialsProperty = new BasicAuthCredentialsProperty {
Password = "password",
Username = "username"
};
Properties
Password
The password to use to connect to a resource.
public string? Password { get; set; }
Property Value
Remarks
Username
The username to use to connect to a resource.
public string? Username { get; set; }