Interface CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty

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

@Stability(Stable) public static interface CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty extends software.amazon.jsii.JsiiSerializable
The connector-specific profile credentials 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.*;
 SAPODataConnectorProfileCredentialsProperty sAPODataConnectorProfileCredentialsProperty = SAPODataConnectorProfileCredentialsProperty.builder()
         .basicAuthCredentials(BasicAuthCredentialsProperty.builder()
                 .password("password")
                 .username("username")
                 .build())
         .oAuthCredentials(OAuthCredentialsProperty.builder()
                 .accessToken("accessToken")
                 .clientId("clientId")
                 .clientSecret("clientSecret")
                 .connectorOAuthRequest(ConnectorOAuthRequestProperty.builder()
                         .authCode("authCode")
                         .redirectUri("redirectUri")
                         .build())
                 .refreshToken("refreshToken")
                 .build())
         .build();