Show / Hide Table of Contents

Interface CfnConnectionPropsMixin.IAuthorizationCodePropertiesProperty

The set of properties required for the the OAuth2 AUTHORIZATION_CODE grant type workflow.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnConnectionPropsMixin.IAuthorizationCodePropertiesProperty
Syntax (vb)
Public Interface CfnConnectionPropsMixin.IAuthorizationCodePropertiesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-authorizationcodeproperties.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.Mixins.Preview.AWS.Glue.Mixins;

             var authorizationCodePropertiesProperty = new AuthorizationCodePropertiesProperty {
                 AuthorizationCode = "authorizationCode",
                 RedirectUri = "redirectUri"
             };

Synopsis

Properties

AuthorizationCode

An authorization code to be used in the third leg of the AUTHORIZATION_CODE grant workflow.

RedirectUri

The redirect URI where the user gets redirected to by authorization server when issuing an authorization code.

Properties

AuthorizationCode

An authorization code to be used in the third leg of the AUTHORIZATION_CODE grant workflow.

string? AuthorizationCode { get; }
Property Value

string

Remarks

This is a single-use code which becomes invalid once exchanged for an access token, thus it is acceptable to have this value as a request parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-authorizationcodeproperties.html#cfn-glue-connection-authorizationcodeproperties-authorizationcode

RedirectUri

The redirect URI where the user gets redirected to by authorization server when issuing an authorization code.

string? RedirectUri { get; }
Property Value

string

Remarks

The URI is subsequently used when the authorization code is exchanged for an access token.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-authorizationcodeproperties.html#cfn-glue-connection-authorizationcodeproperties-redirecturi

Back to top Generated by DocFX