/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::IdentityStore::Group */ export interface AwsIdentitystoreGroup { /** * A string containing the description of the group. */ Description?: string; /** * A string containing the name of the group. This value is commonly displayed when the group is referenced. */ DisplayName: string; /** * The unique identifier for a group in the identity store. */ GroupId?: string; /** * The globally unique identifier for the identity store. */ IdentityStoreId: string; }