Interface CfnConnectorProfile.CustomConnectorProfilePropertiesProperty

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

@Stability(Stable) public static interface CfnConnectorProfile.CustomConnectorProfilePropertiesProperty extends software.amazon.jsii.JsiiSerializable
The profile properties required by the custom connector.

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.*;
 CustomConnectorProfilePropertiesProperty customConnectorProfilePropertiesProperty = CustomConnectorProfilePropertiesProperty.builder()
         .oAuth2Properties(OAuth2PropertiesProperty.builder()
                 .oAuth2GrantType("oAuth2GrantType")
                 .tokenUrl("tokenUrl")
                 .tokenUrlCustomProperties(Map.of(
                         "tokenUrlCustomPropertiesKey", "tokenUrlCustomProperties"))
                 .build())
         .profileProperties(Map.of(
                 "profilePropertiesKey", "profileProperties"))
         .build();