Interface CfnCloudConnectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudConnectorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:34.808Z")
@Stability(Stable)
public interface CfnCloudConnectorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCloudConnectorPropsMixin.
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.*;
CfnCloudConnectorMixinProps cfnCloudConnectorMixinProps = CfnCloudConnectorMixinProps.builder()
.configConnectorArn("configConnectorArn")
.configuration(CloudConnectorConfigurationProperty.builder()
.azureConfiguration(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())
.build())
.description("description")
.displayName("displayName")
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudConnectorMixinPropsstatic final classAn implementation forCfnCloudConnectorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the AWS Config connector.default ObjectThe configuration for the cloud connector.default StringThe description of the cloud connector.default StringThe display name of the cloud connector.default StringThe 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
IResolvableorCfnCloudConnectorPropsMixin.CloudConnectorConfigurationProperty- See Also:
-
getDescription
The description of the cloud connector.- See Also:
-
getDisplayName
The display name of the cloud connector.- See Also:
-
getRoleArn
The IAM role ARN used by the cloud connector.- See Also:
-
getTags
Tags to apply to the cloud connector.- See Also:
-
builder
-