Class CfnConnection.BasicAuthenticationCredentialsProperty
The basic authentication credentials of a connection.
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.BasicAuthenticationCredentialsProperty : CfnConnection.IBasicAuthenticationCredentialsProperty
Syntax (vb)
Public Class CfnConnection.BasicAuthenticationCredentialsProperty Implements 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
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
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"
};
Properties
Password
The password for a connection.
public string? Password { get; set; }
Property Value
Remarks
UserName
The user name for the connecion.
public string? UserName { get; set; }