Show / Hide Table of Contents

Interface CfnConnection.IBasicAuthParametersProperty

The Basic authorization parameters for the connection.

Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IBasicAuthParametersProperty
Syntax (vb)
Public Interface 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

Properties

Password

The password associated with the user name to use for Basic authorization.

Username

The user name to use for Basic authorization.

Properties

Password

The password associated with the user name to use for Basic authorization.

string Password { get; }
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.

string Username { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX