Show / Hide Table of Contents

Interface ICfnGroupProps

Properties for defining a CfnGroup.

Namespace: Amazon.CDK.AWS.IdentityStore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnGroupProps
Syntax (vb)
Public Interface 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

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.

Properties

Description

A string containing the description of the group.

string? Description { get; }
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.

string DisplayName { get; }
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.

string IdentityStoreId { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX