Show / Hide Table of Contents

Class CfnGroupProps

Properties for defining a CfnGroup.

Inheritance
object
CfnGroupProps
Implements
ICfnGroupProps
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.IdentityStore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGroupProps : ICfnGroupProps
Syntax (vb)
Public Class CfnGroupProps Implements ICfnGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-group.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.IdentityStore;

             var cfnGroupProps = new CfnGroupProps {
                 DisplayName = "displayName",
                 IdentityStoreId = "identityStoreId",

                 // the properties below are optional
                 Description = "description"
             };

Synopsis

Constructors

CfnGroupProps()

Properties for defining a CfnGroup.

Properties

Description

A string containing the description of the group.

DisplayName

The display name value for the group.

IdentityStoreId

The globally unique identifier for the identity store.

Constructors

CfnGroupProps()

Properties for defining a CfnGroup.

public CfnGroupProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-group.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.IdentityStore;

             var cfnGroupProps = new CfnGroupProps {
                 DisplayName = "displayName",
                 IdentityStoreId = "identityStoreId",

                 // the properties below are optional
                 Description = "description"
             };

Properties

Description

A string containing the description of the group.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-group.html#cfn-identitystore-group-description

DisplayName

The display name value for the group.

public string DisplayName { get; set; }
Property Value

string

Remarks

The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.

Prefix search supports a maximum of 1,000 characters for the string.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-group.html#cfn-identitystore-group-displayname

IdentityStoreId

The globally unique identifier for the identity store.

public string IdentityStoreId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-identitystore-group.html#cfn-identitystore-group-identitystoreid

Implements

ICfnGroupProps
Back to top Generated by DocFX