Interface ICfnConnectorProps
Properties for defining a CfnConnector.
Namespace: Amazon.CDK.AWS.PCAConnectorAD
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnConnectorProps
Syntax (vb)
Public Interface ICfnConnectorProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.PCAConnectorAD;
var cfnConnectorProps = new CfnConnectorProps {
CertificateAuthorityArn = "certificateAuthorityArn",
DirectoryId = "directoryId",
VpcInformation = new VpcInformationProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
// the properties below are optional
IpAddressType = "ipAddressType"
},
// the properties below are optional
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Properties
| CertificateAuthorityArn | The Amazon Resource Name (ARN) of the certificate authority being used. |
| DirectoryId | The identifier of the Active Directory. |
| Tags | Metadata assigned to a connector consisting of a key-value pair. |
| VpcInformation | Information of the VPC and security group(s) used with the connector. |
Properties
CertificateAuthorityArn
The Amazon Resource Name (ARN) of the certificate authority being used.
string CertificateAuthorityArn { get; }
Property Value
Remarks
DirectoryId
The identifier of the Active Directory.
string DirectoryId { get; }
Property Value
Remarks
Tags
Metadata assigned to a connector consisting of a key-value pair.
IDictionary<string, string>? Tags { get; }
Property Value
Remarks
VpcInformation
Information of the VPC and security group(s) used with the connector.
object VpcInformation { get; }