@Stability(value=Stable)
public static interface CfnConnectorProfile.OAuthPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectorProfile.OAuthPropertiesProperty.Builder
A builder for
CfnConnectorProfile.OAuthPropertiesProperty |
static class |
CfnConnectorProfile.OAuthPropertiesProperty.Jsii$Proxy
An implementation for
CfnConnectorProfile.OAuthPropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectorProfile.OAuthPropertiesProperty.Builder |
builder() |
default String |
getAuthCodeUrl()
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
|
default List<String> |
getOAuthScopes()
The OAuth scopes required for OAuth type authentication.
|
default String |
getTokenUrl()
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
|
@Stability(value=Stable) @Nullable default String getAuthCodeUrl()
@Stability(value=Stable) @Nullable default List<String> getOAuthScopes()
@Stability(value=Stable) @Nullable default String getTokenUrl()
@Stability(value=Stable) static CfnConnectorProfile.OAuthPropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.