Class CfnConnection.UsernamePasswordProperty
The username and password of a connection.
Implements
Inherited Members
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
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
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
Remarks
Username
The username of a connection.
public string Username { get; set; }