Show / Hide Table of Contents

Class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty

The basic authentication credentials of a connection.

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.Mixins.Preview.AWS.DataZone.Mixins
Assembly: Amazon.CDK.Mixins.Preview.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-datazone-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.Mixins.Preview.AWS.DataZone.Mixins;

             var basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
                 Password = "password",
                 UserName = "userName"
             };

Synopsis

Constructors

BasicAuthenticationCredentialsProperty()

The basic authentication credentials of a connection.

Properties

Password

The password for a connection.

UserName

The user name for the connecion.

Constructors

BasicAuthenticationCredentialsProperty()

The basic authentication credentials of a connection.

public BasicAuthenticationCredentialsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-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.Mixins.Preview.AWS.DataZone.Mixins;

             var basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
                 Password = "password",
                 UserName = "userName"
             };

Properties

Password

The password for a connection.

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

string

Remarks

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

UserName

The user name for the connecion.

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

string

Remarks

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

Implements

CfnConnectionPropsMixin.IBasicAuthenticationCredentialsProperty
Back to top Generated by DocFX