Interface CfnCloudConnector.AzureConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudConnector.AzureConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnCloudConnector
@Stability(Stable)
public static interface CfnCloudConnector.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.services.ssm.*;
AzureConfigurationProperty azureConfigurationProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudConnector.AzureConfigurationPropertystatic final classAn implementation forCfnCloudConnector.AzureConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The Azure AD application ID.- See Also:
-
getTenantId
The Azure AD tenant ID.Cannot be changed after creation.
- See Also:
-
getApplicationDisplayName
The display name of the Azure AD application.- See Also:
-
getTargets
The targets for the cloud connector.If omitted, the entire tenant is targeted.
Returns union: either
IResolvableorCfnCloudConnector.ConfigurationTargetsProperty- See Also:
-
getTenantDisplayName
The display name of the Azure AD tenant.- See Also:
-
builder
-