Show / Hide Table of Contents

Class CfnConnection.UsernamePasswordProperty

The username and password of a connection.

Inheritance
object
CfnConnection.UsernamePasswordProperty
Implements
CfnConnection.IUsernamePasswordProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.UsernamePasswordProperty : CfnConnection.IUsernamePasswordProperty
Syntax (vb)
Public Class CfnConnection.UsernamePasswordProperty Implements CfnConnection.IUsernamePasswordProperty
Remarks

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

             var usernamePasswordProperty = new UsernamePasswordProperty {
                 Password = "password",
                 Username = "username"
             };

Synopsis

Constructors

UsernamePasswordProperty()

The username and password of a connection.

Properties

Password

The password of a connection.

Username

The username of a connection.

Constructors

UsernamePasswordProperty()

The username and password of a connection.

public UsernamePasswordProperty()
Remarks

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

             var usernamePasswordProperty = new UsernamePasswordProperty {
                 Password = "password",
                 Username = "username"
             };

Properties

Password

The password of a connection.

public string Password { get; set; }
Property Value

string

Remarks

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

Username

The username of a connection.

public string Username { get; set; }
Property Value

string

Remarks

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

Implements

CfnConnection.IUsernamePasswordProperty
Back to top Generated by DocFX