Interface CfnConnectorPropsMixin.ConnectorConfigurationProperty

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

@Stability(Stable) public static interface CfnConnectorPropsMixin.ConnectorConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the connector.

Specify the third-party cloud provider configuration.

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.config.*;
 ConnectorConfigurationProperty connectorConfigurationProperty = ConnectorConfigurationProperty.builder()
         .azure(AzureConnectorConfigurationProperty.builder()
                 .clientIdentifier("clientIdentifier")
                 .tenantIdentifier("tenantIdentifier")
                 .build())
         .build();
 

See Also: