Interface CfnConnectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:40.413Z")
@Stability(Stable)
public interface CfnConnectorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConnectorPropsMixin.
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.config.*;
CfnConnectorMixinProps cfnConnectorMixinProps = CfnConnectorMixinProps.builder()
.connectorConfiguration(ConnectorConfigurationProperty.builder()
.azure(AzureConnectorConfigurationProperty.builder()
.clientIdentifier("clientIdentifier")
.tenantIdentifier("tenantIdentifier")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorMixinPropsstatic final classAn implementation forCfnConnectorMixinProps -
Method Summary
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
IResolvableorCfnConnectorPropsMixin.ConnectorConfigurationProperty- See Also:
-
getTags
The tags for the connector.- See Also:
-
builder
- Returns:
- a
CfnConnectorMixinProps.BuilderofCfnConnectorMixinProps
-