Show / Hide Table of Contents

Class CfnConnectionPropsMixin.AuthorizationCodePropertiesProperty

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

Inheritance
object
CfnConnectionPropsMixin.AuthorizationCodePropertiesProperty
Implements
CfnConnectionPropsMixin.IAuthorizationCodePropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConnectionPropsMixin.AuthorizationCodePropertiesProperty : CfnConnectionPropsMixin.IAuthorizationCodePropertiesProperty
Syntax (vb)
Public Class CfnConnectionPropsMixin.AuthorizationCodePropertiesProperty Implements 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

Constructors

AuthorizationCodePropertiesProperty()

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

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.

Constructors

AuthorizationCodePropertiesProperty()

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

public AuthorizationCodePropertiesProperty()
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"
             };

Properties

AuthorizationCode

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

public string? AuthorizationCode { get; set; }
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.

public string? RedirectUri { get; set; }
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

Implements

CfnConnectionPropsMixin.IAuthorizationCodePropertiesProperty
Back to top Generated by DocFX