Interface CfnConnectorProfile.OAuth2PropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.OAuth2PropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.OAuth2PropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The OAuth 2.0 properties 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.*; OAuth2PropertiesProperty oAuth2PropertiesProperty = OAuth2PropertiesProperty.builder() .oAuth2GrantType("oAuth2GrantType") .tokenUrl("tokenUrl") .tokenUrlCustomProperties(Map.of( "tokenUrlCustomPropertiesKey", "tokenUrlCustomProperties")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorProfile.OAuth2PropertiesProperty
static final class
An implementation forCfnConnectorProfile.OAuth2PropertiesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOAuth2GrantType
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication. -
getTokenUrl
The token URL required for OAuth 2.0 authentication. -
getTokenUrlCustomProperties
Associates your token URL with a map of properties that you define.Use this parameter to provide any additional details that the connector requires to authenticate your request.
-
builder
-