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: