Interface CfnConnectorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:23.219Z")
@Stability(Stable)
public interface CfnConnectorProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConnector.
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.config.*;
CfnConnectorProps cfnConnectorProps = CfnConnectorProps.builder()
.connectorConfiguration(ConnectorConfigurationProperty.builder()
.azure(AzureConnectorConfigurationProperty.builder()
.clientIdentifier("clientIdentifier")
.tenantIdentifier("tenantIdentifier")
.build())
.build())
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorPropsstatic final classAn implementation forCfnConnectorProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConnectorProps.Builderbuilder()The configuration for the connector.getTags()The tags for the connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectorConfiguration
The configuration for the connector.Specify the third-party cloud provider configuration.
Returns union: either
IResolvableorCfnConnector.ConnectorConfigurationProperty- See Also:
-
getTags
The tags for the connector.- See Also:
-
builder
- Returns:
- a
CfnConnectorProps.BuilderofCfnConnectorProps
-