Show / Hide Table of Contents

Class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty

For supplying basic auth credentials when not providing a SecretArn value.

Inheritance
object
CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty
Implements
CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
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.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty : CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
Syntax (vb)
Public Class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty Implements CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-basicauthenticationcredentials.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.Glue;

             var basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
                 Password = "password",
                 Username = "username"
             };

Synopsis

Constructors

BasicAuthenticationCredentialsProperty()

For supplying basic auth credentials when not providing a SecretArn value.

Properties

Password

The password to connect to the data source.

Username

The username to connect to the data source.

Constructors

BasicAuthenticationCredentialsProperty()

For supplying basic auth credentials when not providing a SecretArn value.

public BasicAuthenticationCredentialsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-basicauthenticationcredentials.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.Glue;

             var basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
                 Password = "password",
                 Username = "username"
             };

Properties

Password

The password to connect to the data source.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-basicauthenticationcredentials.html#cfn-glue-connection-basicauthenticationcredentials-password

Username

The username to connect to the data source.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-basicauthenticationcredentials.html#cfn-glue-connection-basicauthenticationcredentials-username

Implements

CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
Back to top Generated by DocFX