Interface CfnConnection.IBasicAuthenticationCredentialsProperty
The basic authentication credentials of a connection.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IBasicAuthenticationCredentialsProperty
Syntax (vb)
Public Interface CfnConnection.IBasicAuthenticationCredentialsProperty
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 basicAuthenticationCredentialsProperty = new BasicAuthenticationCredentialsProperty {
Password = "password",
UserName = "userName"
};
Synopsis
Properties
| Password | The password for a connection. |
| UserName | The user name for the connecion. |
Properties
Password
The password for a connection.
string? Password { get; }
Property Value
Remarks
UserName
The user name for the connecion.
string? UserName { get; }