typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
33 lines (32 loc) • 1.68 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type UserPoolUserToGroupAttachment_Type = 'AWS::Cognito::UserPoolUserToGroupAttachment';
export declare const UserPoolUserToGroupAttachment_Type = "AWS::Cognito::UserPoolUserToGroupAttachment";
/**
* Resource Type definition for
* AWS::Cognito::UserPoolUserToGroupAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html}
*/
export default function UserPoolUserToGroupAttachment(props: UserPoolUserToGroupAttachment_Properties): CfnResource<UserPoolUserToGroupAttachment_Properties>;
/**
* Resource Type definition for
* AWS::Cognito::UserPoolUserToGroupAttachment {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html}
*/
export declare type UserPoolUserToGroupAttachment_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname}
*/
GroupName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid}
*/
UserPoolId: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username}
*/
Username: Resolvable<string>;
};