Interface CfnCloudConnectorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudConnectorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:19.714Z")
@Stability(Stable)
public interface CfnCloudConnectorProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCloudConnector.
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.*;
CfnCloudConnectorProps cfnCloudConnectorProps = CfnCloudConnectorProps.builder()
.configConnectorArn("configConnectorArn")
.configuration(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())
.displayName("displayName")
.roleArn("roleArn")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudConnectorPropsstatic final classAn implementation forCfnCloudConnectorProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the AWS Config connector.The configuration for the cloud connector.default StringThe description of the cloud connector.The display name of the cloud connector.The IAM role ARN used by the cloud connector.getTags()Tags to apply to the cloud connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigConnectorArn
The ARN of the AWS Config connector.- See Also:
-
getConfiguration
The configuration for the cloud connector.Currently supports Azure.
Returns union: either
IResolvableorCfnCloudConnector.CloudConnectorConfigurationProperty- See Also:
-
getDisplayName
The display name of the cloud connector.- See Also:
-
getRoleArn
The IAM role ARN used by the cloud connector.- See Also:
-
getDescription
The description of the cloud connector.- See Also:
-
getTags
Tags to apply to the cloud connector.- See Also:
-
builder
- Returns:
- a
CfnCloudConnectorProps.BuilderofCfnCloudConnectorProps
-