public static interface CfnConnectorProfile.CustomConnectorProfilePropertiesProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnectorProfile.CustomConnectorProfilePropertiesProperty.Builder
|
static class |
CfnConnectorProfile.CustomConnectorProfilePropertiesProperty.Jsii$Proxy
An implementation for
CfnConnectorProfile.CustomConnectorProfilePropertiesProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConnectorProfile.CustomConnectorProfilePropertiesProperty.Builder |
builder() |
default java.lang.Object |
getOAuth2Properties()
The OAuth 2.0 properties required for OAuth 2.0 authentication.
|
default java.lang.Object |
getProfileProperties()
A map of properties that are required to create a profile for the custom connector.
|