Class CfnConnection.AuthorizationCodePropertiesProperty
The authorization code properties of a connection.
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.AuthorizationCodePropertiesProperty : CfnConnection.IAuthorizationCodePropertiesProperty
Syntax (vb)
Public Class CfnConnection.AuthorizationCodePropertiesProperty Implements CfnConnection.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.AWS.DataZone;
var authorizationCodePropertiesProperty = new AuthorizationCodePropertiesProperty {
AuthorizationCode = "authorizationCode",
RedirectUri = "redirectUri"
};
Synopsis
Constructors
| AuthorizationCodePropertiesProperty() | The authorization code properties of a connection. |
Properties
| AuthorizationCode | The authorization code of a connection. |
| RedirectUri | The redirect URI of a connection. |
Constructors
AuthorizationCodePropertiesProperty()
The authorization code properties of a connection.
public AuthorizationCodePropertiesProperty()
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.AWS.DataZone;
var authorizationCodePropertiesProperty = new AuthorizationCodePropertiesProperty {
AuthorizationCode = "authorizationCode",
RedirectUri = "redirectUri"
};
Properties
AuthorizationCode
The authorization code of a connection.
public string? AuthorizationCode { get; set; }
Property Value
Remarks
RedirectUri
The redirect URI of a connection.
public string? RedirectUri { get; set; }