Interface CfnConnection.GlueOAuth2CredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnection.GlueOAuth2CredentialsProperty.Jsii$Proxy
- Enclosing class:
CfnConnection
@Stability(Stable)
public static interface CfnConnection.GlueOAuth2CredentialsProperty
extends software.amazon.jsii.JsiiSerializable
The GlueOAuth2 credentials of a connection.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.datazone.*;
GlueOAuth2CredentialsProperty glueOAuth2CredentialsProperty = GlueOAuth2CredentialsProperty.builder()
.accessToken("accessToken")
.jwtToken("jwtToken")
.refreshToken("refreshToken")
.userManagedClientApplicationClientSecret("userManagedClientApplicationClientSecret")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnection.GlueOAuth2CredentialsPropertystatic final classAn implementation forCfnConnection.GlueOAuth2CredentialsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessToken
The access token of a connection.- See Also:
-
getJwtToken
The jwt token of the connection.- See Also:
-
getRefreshToken
The refresh token of the connection.- See Also:
-
getUserManagedClientApplicationClientSecret
The user managed client application client secret of the connection.- See Also:
-
builder
-