Interface CfnCloudConnector.ConfigurationTargetsProperty

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

@Stability(Stable) public static interface CfnCloudConnector.ConfigurationTargetsProperty extends software.amazon.jsii.JsiiSerializable
The targets for the cloud connector.

If omitted, the entire tenant is targeted.

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.*;
 ConfigurationTargetsProperty configurationTargetsProperty = ConfigurationTargetsProperty.builder()
         .subscriptions(List.of(AzureSubscriptionProperty.builder()
                 .id("id")
                 // the properties below are optional
                 .displayName("displayName")
                 .build()))
         .build();
 

See Also: