Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-certificateauthorityarn

DirectoryId

The identifier of the Active Directory.

string DirectoryId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-directoryid

Tags

Metadata assigned to a connector consisting of a key-value pair.

IDictionary<string, string>? Tags { get; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-tags

VpcInformation

Information of the VPC and security group(s) used with the connector.

object VpcInformation { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html#cfn-pcaconnectorad-connector-vpcinformation

Type union: either IResolvable or CfnConnector.IVpcInformationProperty

Back to top Generated by DocFX