Class CfnAllGroupMemberships

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.identitystore.CfnAllGroupMemberships
All Implemented Interfaces:
IInspectable, IAllGroupMembershipsRef, IEnvironmentAware, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:04.828Z") @Stability(Stable) public class CfnAllGroupMemberships extends CfnResource implements IInspectable, IAllGroupMembershipsRef
Retrieves membership metadata and attributes for a group membership in an identity store.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.identitystore.*;
 CfnAllGroupMemberships cfnAllGroupMemberships = CfnAllGroupMemberships.Builder.create(this, "MyCfnAllGroupMemberships")
         .groupId("groupId")
         .identityStoreId("identityStoreId")
         .memberId(MemberIdProperty.builder()
                 .userId("userId")
                 .build())
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAllGroupMemberships

      protected CfnAllGroupMemberships(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAllGroupMemberships

      protected CfnAllGroupMemberships(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAllGroupMemberships

      @Stability(Stable) public CfnAllGroupMemberships(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnAllGroupMembershipsProps props)
      Create a new AWS::IdentityStore::AllGroupMemberships.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties.
    • CfnAllGroupMemberships

      @Stability(Stable) public CfnAllGroupMemberships(@NotNull software.constructs.Construct scope, @NotNull String id)
      Create a new AWS::IdentityStore::AllGroupMemberships.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
  • Method Details

    • arnForAllGroupMemberships

      @Stability(Stable) @NotNull public static String arnForAllGroupMemberships(@NotNull IAllGroupMembershipsRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnAllGroupMemberships

      @Stability(Stable) @NotNull public static Boolean isCfnAllGroupMemberships(@NotNull Object x)
      Checks whether the given object is a CfnAllGroupMemberships.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAllGroupMembershipsRef

      @Stability(Stable) @NotNull public AllGroupMembershipsReference getAllGroupMembershipsRef()
      A reference to a AllGroupMemberships resource.
      Specified by:
      getAllGroupMembershipsRef in interface IAllGroupMembershipsRef
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the group membership.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      The date and time the group membership was created.
    • getAttrCreatedBy

      @Stability(Stable) @NotNull public String getAttrCreatedBy()
      The identifier of the user or system that created the group membership.
    • getAttrMembershipId

      @Stability(Stable) @NotNull public String getAttrMembershipId()
      The identifier for a GroupMembership in an identity store.
    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
      The date and time the group membership was last updated.
    • getAttrUpdatedBy

      @Stability(Stable) @NotNull public String getAttrUpdatedBy()
      The identifier of the user or system that last updated the group membership.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getGroupId

      @Stability(Stable) @Nullable public String getGroupId()
      The identifier for a group in the identity store.
    • setGroupId

      @Stability(Stable) public void setGroupId(@Nullable String value)
      The identifier for a group in the identity store.
    • getIdentityStoreId

      @Stability(Stable) @Nullable public String getIdentityStoreId()
      The globally unique identifier for the identity store.
    • setIdentityStoreId

      @Stability(Stable) public void setIdentityStoreId(@Nullable String value)
      The globally unique identifier for the identity store.
    • getMemberId

      @Stability(Stable) @Nullable public Object getMemberId()
      An object containing the identifier of a group member.

      Returns union: either IResolvable or CfnAllGroupMemberships.MemberIdProperty

    • setMemberId

      @Stability(Stable) public void setMemberId(@Nullable IResolvable value)
      An object containing the identifier of a group member.
    • setMemberId

      @Stability(Stable) public void setMemberId(@Nullable CfnAllGroupMemberships.MemberIdProperty value)
      An object containing the identifier of a group member.