Interface CfnCloudConnectorProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCloudConnectorProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:19.714Z") @Stability(Stable) public interface CfnCloudConnectorProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCloudConnector.

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.*;
 CfnCloudConnectorProps cfnCloudConnectorProps = CfnCloudConnectorProps.builder()
         .configConnectorArn("configConnectorArn")
         .configuration(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())
         .displayName("displayName")
         .roleArn("roleArn")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: