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();