Show / Hide Table of Contents

Class CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty

The basic auth credentials required for basic authentication.

Inheritance
object
CfnConnectorProfilePropsMixin.BasicAuthCredentialsProperty
Implements
CfnConnectorProfilePropsMixin.IBasicAuthCredentialsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-basicauthcredentials.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-basicauthcredentials.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-basicauthcredentials.html#cfn-appflow-connectorprofile-basicauthcredentials-password

Username

The username to use to connect to a resource.

public string? Username { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-basicauthcredentials.html#cfn-appflow-connectorprofile-basicauthcredentials-username

Implements

CfnConnectorProfilePropsMixin.IBasicAuthCredentialsProperty
Back to top Generated by DocFX