UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

26 lines (25 loc) 1.2 kB
import { CfnResource, Resolvable } from '../../base'; export declare type UserToGroupAddition_Type = 'AWS::IAM::UserToGroupAddition'; export declare const UserToGroupAddition_Type = "AWS::IAM::UserToGroupAddition"; /** * Resource Type definition for AWS::IAM::UserToGroupAddition {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html} */ export default function UserToGroupAddition(props: UserToGroupAddition_Properties): CfnResource<UserToGroupAddition_Properties>; /** * Resource Type definition for AWS::IAM::UserToGroupAddition {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html} */ export declare type UserToGroupAddition_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-groupname} */ GroupName: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html#cfn-iam-addusertogroup-users} */ Users: Resolvable<string>[]; };