Interface CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The connector-specific profile properties required when using SAPOData.
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.*; SAPODataConnectorProfilePropertiesProperty sAPODataConnectorProfilePropertiesProperty = SAPODataConnectorProfilePropertiesProperty.builder() .applicationHostUrl("applicationHostUrl") .applicationServicePath("applicationServicePath") .clientNumber("clientNumber") .disableSso(false) .logonLanguage("logonLanguage") .oAuthProperties(OAuthPropertiesProperty.builder() .authCodeUrl("authCodeUrl") .oAuthScopes(List.of("oAuthScopes")) .tokenUrl("tokenUrl") .build()) .portNumber(123) .privateLinkServiceName("privateLinkServiceName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The location of the SAPOData resource.default String
The application path to catalog service.default String
The client number for the client creating the connection.default Object
If you set this parameter to true, Amazon AppFlow bypasses the single sign-on (SSO) settings in your SAP account when it accesses your SAP OData instance.default String
The logon language of SAPOData instance.default Object
The SAPOData OAuth properties required for OAuth type authentication.default Number
The port number of the SAPOData instance.default String
The SAPOData Private Link service name to be used for private data transfers.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationHostUrl
The location of the SAPOData resource.- See Also:
-
getApplicationServicePath
The application path to catalog service.- See Also:
-
getClientNumber
The client number for the client creating the connection.- See Also:
-
getDisableSso
If you set this parameter to true, Amazon AppFlow bypasses the single sign-on (SSO) settings in your SAP account when it accesses your SAP OData instance.- See Also:
-
getLogonLanguage
The logon language of SAPOData instance.- See Also:
-
getOAuthProperties
The SAPOData OAuth properties required for OAuth type authentication.- See Also:
-
getPortNumber
The port number of the SAPOData instance.- See Also:
-
getPrivateLinkServiceName
The SAPOData Private Link service name to be used for private data transfers.- See Also:
-
builder
@Stability(Stable) static CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty.Builder builder()
-