Show / Hide Table of Contents

Class CfnConnection.BasicAuthParametersProperty

The Basic authorization parameters for the connection.

Inheritance
object
CfnConnection.BasicAuthParametersProperty
Implements
CfnConnection.IBasicAuthParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-basicauthparameters.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-basicauthparameters.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-basicauthparameters.html#cfn-events-connection-basicauthparameters-password

Username

The user name to use for Basic authorization.

public string Username { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-basicauthparameters.html#cfn-events-connection-basicauthparameters-username

Implements

CfnConnection.IBasicAuthParametersProperty
Back to top Generated by DocFX