typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
41 lines (40 loc) • 1.67 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type User_Type = 'AWS::AppStream::User';
export declare const User_Type = "AWS::AppStream::User";
/**
* Resource Type definition for AWS::AppStream::User {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html}
*/
export default function User(props: User_Properties): CfnResource<User_Properties>;
/**
* Resource Type definition for AWS::AppStream::User {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html}
*/
export declare type User_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username}
*/
UserName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname}
*/
LastName?: Resolvable<string>;
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname}
*/
FirstName?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction}
*/
MessageAction?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype}
*/
AuthenticationType: Resolvable<string>;
};