Interface CfnCloudConnectorPropsMixin.CloudConnectorConfigurationProperty

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

@Stability(Stable) public static interface CfnCloudConnectorPropsMixin.CloudConnectorConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the cloud connector.

Currently supports Azure.

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.ssm.*;
 CloudConnectorConfigurationProperty cloudConnectorConfigurationProperty = CloudConnectorConfigurationProperty.builder()
         .azureConfiguration(AzureConfigurationProperty.builder()
                 .applicationDisplayName("applicationDisplayName")
                 .applicationId("applicationId")
                 .targets(ConfigurationTargetsProperty.builder()
                         .subscriptions(List.of(AzureSubscriptionProperty.builder()
                                 .displayName("displayName")
                                 .id("id")
                                 .build()))
                         .build())
                 .tenantDisplayName("tenantDisplayName")
                 .tenantId("tenantId")
                 .build())
         .build();
 

See Also: