Interface CfnCloudConnectorPropsMixin.AzureConfigurationProperty

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

@Stability(Stable) public static interface CfnCloudConnectorPropsMixin.AzureConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for connecting to 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.*;
 AzureConfigurationProperty azureConfigurationProperty = 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();
 

See Also: