Interface CfnConnectorProfile.OAuthPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.OAuthPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.OAuthPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The OAuth properties 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.*; OAuthPropertiesProperty oAuthPropertiesProperty = OAuthPropertiesProperty.builder() .authCodeUrl("authCodeUrl") .oAuthScopes(List.of("oAuthScopes")) .tokenUrl("tokenUrl") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorProfile.OAuthPropertiesProperty
static final class
An implementation forCfnConnectorProfile.OAuthPropertiesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.The OAuth scopes required for OAuth type authentication.default String
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthCodeUrl
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.- See Also:
-
getOAuthScopes
The OAuth scopes required for OAuth type authentication.- See Also:
-
getTokenUrl
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.- See Also:
-
builder
-