Interface CfnConnectorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:05.175Z")
@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")) .build()) // the properties below are optional .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorProps
static final class
An implementation forCfnConnectorProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnConnectorProps.Builder
builder()
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.- See Also:
-
getTags
Metadata assigned to a connector consisting of a key-value pair.- See Also:
-
builder
- Returns:
- a
CfnConnectorProps.Builder
ofCfnConnectorProps
-