Show / Hide Table of Contents

Class CfnTemplateGroupAccessControlEntryProps

Properties for defining a CfnTemplateGroupAccessControlEntry.

Inheritance
object
CfnTemplateGroupAccessControlEntryProps
Implements
ICfnTemplateGroupAccessControlEntryProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.PCAConnectorAD
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplateGroupAccessControlEntryProps : ICfnTemplateGroupAccessControlEntryProps
Syntax (vb)
Public Class CfnTemplateGroupAccessControlEntryProps Implements ICfnTemplateGroupAccessControlEntryProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-templategroupaccesscontrolentry.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 cfnTemplateGroupAccessControlEntryProps = new CfnTemplateGroupAccessControlEntryProps {
                 AccessRights = new AccessRightsProperty {
                     AutoEnroll = "autoEnroll",
                     Enroll = "enroll"
                 },
                 GroupDisplayName = "groupDisplayName",

                 // the properties below are optional
                 GroupSecurityIdentifier = "groupSecurityIdentifier",
                 TemplateArn = "templateArn"
             };

Synopsis

Constructors

CfnTemplateGroupAccessControlEntryProps()

Properties for defining a CfnTemplateGroupAccessControlEntry.

Properties

AccessRights

Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.

GroupDisplayName

Name of the Active Directory group.

GroupSecurityIdentifier

Security identifier (SID) of the group object from Active Directory.

TemplateArn

The Amazon Resource Name (ARN) that was returned when you called CreateTemplate .

Constructors

CfnTemplateGroupAccessControlEntryProps()

Properties for defining a CfnTemplateGroupAccessControlEntry.

public CfnTemplateGroupAccessControlEntryProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-templategroupaccesscontrolentry.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 cfnTemplateGroupAccessControlEntryProps = new CfnTemplateGroupAccessControlEntryProps {
                 AccessRights = new AccessRightsProperty {
                     AutoEnroll = "autoEnroll",
                     Enroll = "enroll"
                 },
                 GroupDisplayName = "groupDisplayName",

                 // the properties below are optional
                 GroupSecurityIdentifier = "groupSecurityIdentifier",
                 TemplateArn = "templateArn"
             };

Properties

AccessRights

Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.

public object AccessRights { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTemplateGroupAccessControlEntry.IAccessRightsProperty

GroupDisplayName

Name of the Active Directory group.

public string GroupDisplayName { get; set; }
Property Value

string

Remarks

This name does not need to match the group name in Active Directory.

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

GroupSecurityIdentifier

Security identifier (SID) of the group object from Active Directory.

public string? GroupSecurityIdentifier { get; set; }
Property Value

string

Remarks

The SID starts with "S-".

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

TemplateArn

The Amazon Resource Name (ARN) that was returned when you called CreateTemplate .

public string? TemplateArn { get; set; }
Property Value

string

Remarks

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

Implements

ICfnTemplateGroupAccessControlEntryProps
Back to top Generated by DocFX