Interface CfnConnectorProfile.OAuth2CredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.OAuth2CredentialsProperty.Jsii$Proxy
- Enclosing class:
- CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.OAuth2CredentialsProperty
extends software.amazon.jsii.JsiiSerializable
The OAuth 2.0 credentials required for OAuth 2.0 authentication.
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.appflow.*; OAuth2CredentialsProperty oAuth2CredentialsProperty = OAuth2CredentialsProperty.builder() .accessToken("accessToken") .clientId("clientId") .clientSecret("clientSecret") .oAuthRequest(ConnectorOAuthRequestProperty.builder() .authCode("authCode") .redirectUri("redirectUri") .build()) .refreshToken("refreshToken") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorProfile.OAuth2CredentialsProperty
static final class
An implementation forCfnConnectorProfile.OAuth2CredentialsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The access token used to access the connector on your behalf.default String
The identifier for the desired client.default String
The client secret used by the OAuth client to authenticate to the authorization server.default Object
CfnConnectorProfile.OAuth2CredentialsProperty.OAuthRequest
.default String
The refresh token used to refresh an expired access token.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessToken
The access token used to access the connector on your behalf. -
getClientId
The identifier for the desired client. -
getClientSecret
The client secret used by the OAuth client to authenticate to the authorization server. -
getOAuthRequest
CfnConnectorProfile.OAuth2CredentialsProperty.OAuthRequest
. -
getRefreshToken
The refresh token used to refresh an expired access token. -
builder
-