Class: Aws::IdentityStore::Types::UpdateGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::UpdateGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_id ⇒ String
The identifier for a group in the identity store.
-
#identity_store_id ⇒ String
The globally unique identifier for the identity store.
-
#operations ⇒ Array<Types::AttributeOperation>
A list of ‘AttributeOperation` objects to apply to the requested group.
Instance Attribute Details
#group_id ⇒ String
The identifier for a group in the identity store.
1685 1686 1687 1688 1689 1690 1691 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1685 class UpdateGroupRequest < Struct.new( :identity_store_id, :group_id, :operations) SENSITIVE = [] include Aws::Structure end |
#identity_store_id ⇒ String
The globally unique identifier for the identity store.
1685 1686 1687 1688 1689 1690 1691 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1685 class UpdateGroupRequest < Struct.new( :identity_store_id, :group_id, :operations) SENSITIVE = [] include Aws::Structure end |
#operations ⇒ Array<Types::AttributeOperation>
A list of ‘AttributeOperation` objects to apply to the requested group. These operations might add, replace, or remove an attribute. For more information on the attributes that can be added, replaced, or removed, see [Group].
[1]: docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_Group.html
1685 1686 1687 1688 1689 1690 1691 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1685 class UpdateGroupRequest < Struct.new( :identity_store_id, :group_id, :operations) SENSITIVE = [] include Aws::Structure end |