IIdentityStoreUpdateGroupRequest
Interface in AWS.IdentityStore
Interface for UpdateGroup requests.
Ancestors
Properties
GroupId
property GroupId: string
The unique identifier of the group to update.
This identifier refers to the existing group whose attributes are to be modified. It must match a group in the specified identity store.
IdentityStoreId
property IdentityStoreId: string
The identifier of the identity store that contains the group to update.
This value specifies the AWS SSO identity store instance where the group resides. It is required for scoping the update operation.
Operations
property Operations: TList<IIdentityStoreAttributeOperation>
Type: IIdentityStoreAttributeOperation
A list of attribute update operations to apply to the group.
Each item in the list represents an update operation targeting a specific attribute, such as DisplayName or Description. This property is required and must contain at least one update operation.
Methods
AddOperation
function AddOperation( const AOperation: IIdentityStoreAttributeOperation): NativeInt; overload;
IIdentityStoreAttributeOperation
Add an operation to the list of Operations.
Parameters
| Name | Description |
|---|---|
AOperation | Specify an attribute operation to add to the Operations list. |
Returns
Returns the index of the operation added to the Operations list.
function AddOperation( const AAttributePath, AAttributeValue: string): NativeInt; overload;
Add an operation to the list of Operations.
Parameters
| Name | Description |
|---|---|
AAttributePath | Specify the name of the attribute to update. |
AAttributeValue | Specify the new value for the specified attribute, formatted as a JSON literal. |
Returns
Returns the index of the operation added to the Operations list.