Class CfnConnectionPropsMixin.BasicAuthenticationCredentialsProperty
The basic authentication credentials of a connection.
Inherited Members
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
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
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
Remarks
UserName
The user name for the connecion.
public string? UserName { get; set; }