public static interface CfnConnectorProfile.OAuthPropertiesProperty
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 java.lang.String |
getAuthCodeUrl()
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
|
default java.util.List<java.lang.String> |
getOAuthScopes()
The OAuth scopes required for OAuth type authentication.
|
default java.lang.String |
getTokenUrl()
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
|
default java.lang.String getAuthCodeUrl()
default java.util.List<java.lang.String> getOAuthScopes()
default java.lang.String getTokenUrl()
static CfnConnectorProfile.OAuthPropertiesProperty.Builder builder()