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
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 |
| 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
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.
RedirectUri
The redirect URI where the user gets redirected to by authorization server when issuing an authorization code.
string? RedirectUri { get; }
Property Value
Remarks
The URI is subsequently used when the authorization code is exchanged for an access token.