Interface CfnConnectorProfile.OAuthCredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.OAuthCredentialsProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.OAuthCredentialsProperty
extends software.amazon.jsii.JsiiSerializable
The OAuth credentials required for OAuth type 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.*; OAuthCredentialsProperty oAuthCredentialsProperty = OAuthCredentialsProperty.builder() .accessToken("accessToken") .clientId("clientId") .clientSecret("clientSecret") .connectorOAuthRequest(ConnectorOAuthRequestProperty.builder() .authCode("authCode") .redirectUri("redirectUri") .build()) .refreshToken("refreshToken") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorProfile.OAuthCredentialsProperty
static final class
An implementation forCfnConnectorProfile.OAuthCredentialsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The access token used to access protected SAPOData resources.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
default String
The refresh token used to refresh expired access token.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessToken
The access token used to access protected SAPOData resources.- See Also:
-
getClientId
The identifier for the desired client.- See Also:
-
getClientSecret
The client secret used by the OAuth client to authenticate to the authorization server.- See Also:
-
getConnectorOAuthRequest
- See Also:
-
getRefreshToken
The refresh token used to refresh expired access token.- See Also:
-
builder
-