Interface CfnConnection.IGlueOAuth2CredentialsProperty
The GlueOAuth2 credentials of a connection.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IGlueOAuth2CredentialsProperty
Syntax (vb)
Public Interface CfnConnection.IGlueOAuth2CredentialsProperty
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 glueOAuth2CredentialsProperty = new GlueOAuth2CredentialsProperty {
AccessToken = "accessToken",
JwtToken = "jwtToken",
RefreshToken = "refreshToken",
UserManagedClientApplicationClientSecret = "userManagedClientApplicationClientSecret"
};
Synopsis
Properties
| AccessToken | The access token of a connection. |
| JwtToken | The jwt token of the connection. |
| RefreshToken | The refresh token of the connection. |
| UserManagedClientApplicationClientSecret | The user managed client application client secret of the connection. |
Properties
AccessToken
The access token of a connection.
string? AccessToken { get; }
Property Value
Remarks
JwtToken
The jwt token of the connection.
string? JwtToken { get; }
Property Value
Remarks
RefreshToken
The refresh token of the connection.
string? RefreshToken { get; }
Property Value
Remarks
UserManagedClientApplicationClientSecret
The user managed client application client secret of the connection.
string? UserManagedClientApplicationClientSecret { get; }