import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::AppStream::Stack */ export declare class Stack extends pulumi.CustomResource { /** * Get an existing Stack resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Stack; /** * Returns true if the given object is an instance of Stack. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Stack; /** * The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints. */ readonly accessEndpoints: pulumi.Output; /** * The persistent application settings for users of the stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session. */ readonly applicationSettings: pulumi.Output; /** * The stack attributes to delete. */ readonly attributesToDelete: pulumi.Output; /** * This parameter has been deprecated. Deletes the storage connectors currently enabled for the stack. */ readonly deleteStorageConnectors: pulumi.Output; /** * The description to display. */ readonly description: pulumi.Output; /** * The stack name to display. */ readonly displayName: pulumi.Output; /** * The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. */ readonly embedHostDomains: pulumi.Output; /** * The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed. */ readonly feedbackUrl: pulumi.Output; /** * The name of the stack. */ readonly name: pulumi.Output; /** * The URL that users are redirected to after their streaming session ends. */ readonly redirectUrl: pulumi.Output; /** * The storage connectors to enable. */ readonly storageConnectors: pulumi.Output; /** * The streaming protocol that you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client. */ readonly streamingExperienceSettings: pulumi.Output; /** * An array of key-value pairs. */ readonly tags: pulumi.Output; /** * The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. */ readonly userSettings: pulumi.Output; /** * Create a Stack resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: StackArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Stack resource. */ export interface StackArgs { /** * The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints. */ accessEndpoints?: pulumi.Input[]>; /** * The persistent application settings for users of the stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session. */ applicationSettings?: pulumi.Input; /** * The stack attributes to delete. */ attributesToDelete?: pulumi.Input[]>; /** * This parameter has been deprecated. Deletes the storage connectors currently enabled for the stack. */ deleteStorageConnectors?: pulumi.Input; /** * The description to display. */ description?: pulumi.Input; /** * The stack name to display. */ displayName?: pulumi.Input; /** * The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. */ embedHostDomains?: pulumi.Input[]>; /** * The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed. */ feedbackUrl?: pulumi.Input; /** * The name of the stack. */ name?: pulumi.Input; /** * The URL that users are redirected to after their streaming session ends. */ redirectUrl?: pulumi.Input; /** * The storage connectors to enable. */ storageConnectors?: pulumi.Input[]>; /** * The streaming protocol that you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client. */ streamingExperienceSettings?: pulumi.Input; /** * An array of key-value pairs. */ tags?: pulumi.Input[]>; /** * The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. */ userSettings?: pulumi.Input[]>; }