Interface CfnConnectorProfilePropsMixin.OAuthPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectorProfilePropsMixin.OAuthPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnConnectorProfilePropsMixin

@Stability(Stable) public static interface CfnConnectorProfilePropsMixin.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.cfnpropertymixins.services.appflow.*;
 OAuthPropertiesProperty oAuthPropertiesProperty = OAuthPropertiesProperty.builder()
         .authCodeUrl("authCodeUrl")
         .oAuthScopes(List.of("oAuthScopes"))
         .tokenUrl("tokenUrl")
         .build();
 

See Also: