Files
agent-claw/cdk/node_modules/aws-cdk-lib/interfaces/generated/aws-identitystore-interfaces.generated.d.ts
2026-05-06 18:55:16 -05:00

57 lines
1.3 KiB
TypeScript

import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a Group.
*
* @stability experimental
*/
export interface IGroupRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Group resource.
*/
readonly groupRef: GroupReference;
}
/**
* A reference to a Group resource.
*
* @struct
* @stability external
*/
export interface GroupReference {
/**
* The GroupId of the Group resource.
*/
readonly groupId: string;
/**
* The IdentityStoreId of the Group resource.
*/
readonly identityStoreId: string;
}
/**
* Indicates that this resource can be referenced as a GroupMembership.
*
* @stability experimental
*/
export interface IGroupMembershipRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a GroupMembership resource.
*/
readonly groupMembershipRef: GroupMembershipReference;
}
/**
* A reference to a GroupMembership resource.
*
* @struct
* @stability external
*/
export interface GroupMembershipReference {
/**
* The MembershipId of the GroupMembership resource.
*/
readonly membershipId: string;
/**
* The IdentityStoreId of the GroupMembership resource.
*/
readonly identityStoreId: string;
}