Create Connector
| pcaconnectorad_create_connector | R Documentation | 
Creates a connector between Amazon Web Services Private CA and an Active Directory¶
Description¶
Creates a connector between Amazon Web Services Private CA and an Active Directory. You must specify the private CA, directory ID, and security groups.
Usage¶
pcaconnectorad_create_connector(CertificateAuthorityArn, ClientToken,
  DirectoryId, Tags, VpcInformation)
Arguments¶
| CertificateAuthorityArn | [required] The Amazon Resource Name (ARN) of the certificate authority being used. | 
| ClientToken | Idempotency token. | 
| DirectoryId | [required] The identifier of the Active Directory. | 
| Tags | Metadata assigned to a connector consisting of a key-value pair. | 
| VpcInformation | [required] Information about your VPC and security groups used with the connector. | 
Value¶
A list with the following syntax:
list(
  ConnectorArn = "string"
)
Request syntax¶
svc$create_connector(
  CertificateAuthorityArn = "string",
  ClientToken = "string",
  DirectoryId = "string",
  Tags = list(
    "string"
  ),
  VpcInformation = list(
    IpAddressType = "IPV4"|"DUALSTACK",
    SecurityGroupIds = list(
      "string"
    )
  )
)