UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

32 lines (31 loc) 1.39 kB
import { CfnResource, Resolvable } from '../../base'; export declare type UserGroup_Type = 'AWS::ElastiCache::UserGroup'; export declare const UserGroup_Type = "AWS::ElastiCache::UserGroup"; /** * Resource Type definition for AWS::ElastiCache::UserGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html} */ export default function UserGroup(props: UserGroup_Properties): CfnResource<UserGroup_Properties>; /** * Resource Type definition for AWS::ElastiCache::UserGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html} */ export declare type UserGroup_Properties = { Status?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-usergroupid} */ UserGroupId: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-engine} */ Engine: Resolvable<'redis'>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-userids} */ UserIds?: Resolvable<string>[]; Arn?: Resolvable<string>; };