Class CfnCloudConnector
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.ssm.CfnCloudConnector
- All Implemented Interfaces:
IInspectable,IEnvironmentAware,ICloudConnectorRef,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:19.712Z")
@Stability(Stable)
public class CfnCloudConnector
extends CfnResource
implements IInspectable, ICloudConnectorRef, ITaggableV2
Resource Type definition for AWS::SSM::CloudConnector.
Enables AWS Systems Manager to manage resources in external cloud providers.
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.*;
CfnCloudConnector cfnCloudConnector = CfnCloudConnector.Builder.create(this, "MyCfnCloudConnector")
.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 TypeClassDescriptionstatic interfaceConfiguration for connecting to Azure.static interfaceAn Azure subscription with its ID and optional display name.static final classA fluent builder forCfnCloudConnector.static interfaceThe configuration for the cloud connector.static interfaceThe targets for the cloud connector.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.ssm.ICloudConnectorRef
ICloudConnectorRef.Jsii$Default, ICloudConnectorRef.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnCloudConnector(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnCloudConnector(software.amazon.jsii.JsiiObjectRef objRef) CfnCloudConnector(software.constructs.Construct scope, String id, CfnCloudConnectorProps props) Create a newAWS::SSM::CloudConnector. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringarnForCloudConnector(ICloudConnectorRef resource) The ARN of the cloud connector.The unique identifier of the cloud connector.The timestamp when the cloud connector was created.The timestamp when the cloud connector was last updated.Tag Manager which manages the tags for this resource.A reference to a CloudConnector resource.The ARN of the AWS Config connector.The configuration for the cloud connector.The 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.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.static BooleanChecks whether the given object is a CfnCloudConnector.renderProperties(Map<String, Object> props) voidsetConfigConnectorArn(String value) The ARN of the AWS Config connector.voidsetConfiguration(IResolvable value) The configuration for the cloud connector.voidThe configuration for the cloud connector.voidsetDescription(String value) The description of the cloud connector.voidsetDisplayName(String value) The display name of the cloud connector.voidsetRoleArn(String value) The IAM role ARN used by the cloud connector.voidTags to apply to the cloud connector.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, addResourceDependency, addResourceDependency, applyCrossStackReferenceStrength, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, cfnPropertyName, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, removeDependency, removeResourceDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId, withMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnCloudConnector
protected CfnCloudConnector(software.amazon.jsii.JsiiObjectRef objRef) -
CfnCloudConnector
protected CfnCloudConnector(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnCloudConnector
@Stability(Stable) public CfnCloudConnector(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnCloudConnectorProps props) Create a newAWS::SSM::CloudConnector.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
arnForCloudConnector
@Stability(Stable) @NotNull public static String arnForCloudConnector(@NotNull ICloudConnectorRef resource) - Parameters:
resource- This parameter is required.
-
isCfnCloudConnector
Checks whether the given object is a CfnCloudConnector.- Parameters:
x- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrCloudConnectorArn
The ARN of the cloud connector. -
getAttrCloudConnectorId
The unique identifier of the cloud connector. -
getAttrCreatedAt
The timestamp when the cloud connector was created. -
getAttrUpdatedAt
The timestamp when the cloud connector was last updated. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getCfnPropertyNames
- Overrides:
getCfnPropertyNamesin classCfnResource
-
getCloudConnectorRef
A reference to a CloudConnector resource.- Specified by:
getCloudConnectorRefin interfaceICloudConnectorRef
-
getConfigConnectorArn
The ARN of the AWS Config connector. -
setConfigConnectorArn
The ARN of the AWS Config connector. -
getConfiguration
The configuration for the cloud connector.Returns union: either
IResolvableorCfnCloudConnector.CloudConnectorConfigurationProperty -
setConfiguration
The configuration for the cloud connector. -
setConfiguration
@Stability(Stable) public void setConfiguration(@NotNull CfnCloudConnector.CloudConnectorConfigurationProperty value) The configuration for the cloud connector. -
getDisplayName
The display name of the cloud connector. -
setDisplayName
The display name of the cloud connector. -
getRoleArn
The IAM role ARN used by the cloud connector. -
setRoleArn
The IAM role ARN used by the cloud connector. -
getDescription
The description of the cloud connector. -
setDescription
The description of the cloud connector. -
getTags
Tags to apply to the cloud connector. -
setTags
Tags to apply to the cloud connector.
-