typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
47 lines (46 loc) • 1.93 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type User_Type = 'AWS::ElastiCache::User';
export declare const User_Type = "AWS::ElastiCache::User";
/**
* Resource Type definition for AWS::ElastiCache::User {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html}
*/
export default function User(props: User_Properties): CfnResource<User_Properties>;
/**
* Resource Type definition for AWS::ElastiCache::User {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html}
*/
export declare type User_Properties = {
Status?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html#cfn-elasticache-user-userid}
*/
UserId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html#cfn-elasticache-user-username}
*/
UserName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html#cfn-elasticache-user-engine}
*/
Engine: Resolvable<'redis'>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html#cfn-elasticache-user-accessstring}
*/
AccessString?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html#cfn-elasticache-user-nopasswordrequired}
*/
NoPasswordRequired?: Resolvable<boolean>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html#cfn-elasticache-user-passwords}
*/
Passwords?: Resolvable<string>[];
Arn?: Resolvable<string>;
};