Class CfnConnection.BasicAuthParametersProperty
The Basic authorization parameters for the connection.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.BasicAuthParametersProperty : CfnConnection.IBasicAuthParametersProperty
Syntax (vb)
Public Class CfnConnection.BasicAuthParametersProperty Implements CfnConnection.IBasicAuthParametersProperty
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.Events;
var basicAuthParametersProperty = new BasicAuthParametersProperty {
Password = "password",
Username = "username"
};
Synopsis
Constructors
| BasicAuthParametersProperty() | The Basic authorization parameters for the connection. |
Properties
| Password | The password associated with the user name to use for Basic authorization. |
| Username | The user name to use for Basic authorization. |
Constructors
BasicAuthParametersProperty()
The Basic authorization parameters for the connection.
public BasicAuthParametersProperty()
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.Events;
var basicAuthParametersProperty = new BasicAuthParametersProperty {
Password = "password",
Username = "username"
};
Properties
Password
The password associated with the user name to use for Basic authorization.
public string Password { get; set; }
Property Value
Remarks
Username
The user name to use for Basic authorization.
public string Username { get; set; }