Interface CfnCloudConnector.CloudConnectorConfigurationProperty

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

@Stability(Stable) public static interface CfnCloudConnector.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.services.ssm.*;
 CloudConnectorConfigurationProperty cloudConnectorConfigurationProperty = CloudConnectorConfigurationProperty.builder()
         .azureConfiguration(AzureConfigurationProperty.builder()
                 .applicationId("applicationId")
                 .tenantId("tenantId")
                 // the properties below are optional
                 .applicationDisplayName("applicationDisplayName")
                 .targets(ConfigurationTargetsProperty.builder()
                         .subscriptions(List.of(AzureSubscriptionProperty.builder()
                                 .id("id")
                                 // the properties below are optional
                                 .displayName("displayName")
                                 .build()))
                         .build())
                 .tenantDisplayName("tenantDisplayName")
                 .build())
         .build();
 

See Also: