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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudConnectorPropsMixin.AzureConfigurationPropertystatic final classAn implementation forCfnCloudConnectorPropsMixin.AzureConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationDisplayName
The display name of the Azure AD application.- See Also:
-
getApplicationId
The Azure AD application ID.- See Also:
-
getTargets
The targets for the cloud connector.If omitted, the entire tenant is targeted.
Returns union: either
IResolvableorCfnCloudConnectorPropsMixin.ConfigurationTargetsProperty- See Also:
-
getTenantDisplayName
The display name of the Azure AD tenant.- See Also:
-
getTenantId
The Azure AD tenant ID.Cannot be changed after creation.
- See Also:
-
builder
-