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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudConnector.CloudConnectorConfigurationPropertystatic final classAn implementation forCfnCloudConnector.CloudConnectorConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAzureConfiguration
Configuration for connecting to Azure.Returns union: either
IResolvableorCfnCloudConnector.AzureConfigurationProperty- See Also:
-
builder
-