Show / Hide Table of Contents

Interface CfnConnection.IClientParametersProperty

The OAuth authorization parameters to use for the connection.

Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IClientParametersProperty
Syntax (vb)
Public Interface CfnConnection.IClientParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-clientparameters.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 clientParametersProperty = new ClientParametersProperty {
                 ClientId = "clientId",
                 ClientSecret = "clientSecret"
             };

Synopsis

Properties

ClientId

The client ID to use for OAuth authorization.

ClientSecret

The client secret assciated with the client ID to use for OAuth authorization.

Properties

ClientId

The client ID to use for OAuth authorization.

string ClientId { get; }
Property Value

string

Remarks

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

ClientSecret

The client secret assciated with the client ID to use for OAuth authorization.

string ClientSecret { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX