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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnCloudConnectorPropsMixin.CloudConnectorConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAzureConfiguration
Configuration for connecting to Azure.Returns union: either
IResolvableorCfnCloudConnectorPropsMixin.AzureConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnCloudConnectorPropsMixin.CloudConnectorConfigurationProperty.Builder builder()
-