Interface CfnConnectorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:43.024Z")
@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.pcaconnectorad.*;
CfnConnectorProps cfnConnectorProps = CfnConnectorProps.builder()
.certificateAuthorityArn("certificateAuthorityArn")
.directoryId("directoryId")
.vpcInformation(VpcInformationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
// the properties below are optional
.ipAddressType("ipAddressType")
.build())
// the properties below are optional
.tags(Map.of(
"tagsKey", "tags"))
.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 Amazon Resource Name (ARN) of the certificate authority being used.The identifier of the Active Directory.getTags()Metadata assigned to a connector consisting of a key-value pair.Information 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:
-
getVpcInformation
Information of the VPC and security group(s) used with the connector.Returns union: either
IResolvableorCfnConnector.VpcInformationProperty- See Also:
-
getTags
Metadata assigned to a connector consisting of a key-value pair.- See Also:
-
builder
- Returns:
- a
CfnConnectorProps.BuilderofCfnConnectorProps
-