AWS Fundamentals Logo
AWS Fundamentals
AWS::IdentityStore::GroupMembership

IdentityStore GroupMembership

Resource Type Definition for AWS:IdentityStore::GroupMembership

Properties

3 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
GroupId
string
RequiredCreate-only
IdentityStoreId
string
RequiredCreate-only
MemberId
MemberId
RequiredCreate-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
MembershipIdstringThe identifier for a GroupMembership in the identity store.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::IdentityStore::GroupMembership

Resources:
  MyResource:
    Type: AWS::IdentityStore::GroupMembership
    Properties:
      IdentityStoreId: "my-identitystoreid"
      GroupId: "my-groupid"
      MemberId: "my-memberid"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

identitystore:CreateGroupMembershipidentitystore:DescribeGroupMembership

read

identitystore:DescribeGroupMembership

delete

identitystore:DeleteGroupMembershipidentitystore:DescribeGroupMembership

list

identitystore:ListGroupMemberships

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceIdentityStore
Properties4
Required3
TaggingNot supported
Primary IDMembershipId

Supported Operations

CreateReadDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

IdentityStoreIdGroupIdMemberId

Related Resources

External Links