Class CfnGroupProps
Properties for defining a CfnGroup.
Implements
Inherited Members
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 |
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
Remarks
DisplayName
The display name value for the group.
public string DisplayName { get; set; }
Property Value
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.
IdentityStoreId
The globally unique identifier for the identity store.
public string IdentityStoreId { get; set; }