Interface CfnConnectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:23.355Z")
@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.pcaconnectorad.*;
CfnConnectorMixinProps cfnConnectorMixinProps = CfnConnectorMixinProps.builder()
.certificateAuthorityArn("certificateAuthorityArn")
.directoryId("directoryId")
.tags(Map.of(
"tagsKey", "tags"))
.vpcInformation(VpcInformationProperty.builder()
.ipAddressType("ipAddressType")
.securityGroupIds(List.of("securityGroupIds"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorMixinPropsstatic final classAn implementation forCfnConnectorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the certificate authority being used.default StringThe identifier of the Active Directory.getTags()Metadata assigned to a connector consisting of a key-value pair.default ObjectInformation of the VPC and security group(s) used with the connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateAuthorityArn
The Amazon Resource Name (ARN) of the certificate authority being used.- See Also:
-
getDirectoryId
The identifier of the Active Directory.- See Also:
-
getTags
Metadata assigned to a connector consisting of a key-value pair.- See Also:
-
getVpcInformation
Information of the VPC and security group(s) used with the connector.Returns union: either
IResolvableorCfnConnectorPropsMixin.VpcInformationProperty- See Also:
-
builder
- Returns:
- a
CfnConnectorMixinProps.BuilderofCfnConnectorMixinProps
-