You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description" : "The storage connectors to enable."
15
18
},
16
19
"DeleteStorageConnectors" : {
17
-
"type" : "boolean"
20
+
"type" : "boolean",
21
+
"description" : "This parameter has been deprecated. Deletes the storage connectors currently enabled for the stack."
18
22
},
19
23
"EmbedHostDomains" : {
20
24
"type" : "array",
21
25
"uniqueItems" : false,
22
26
"items" : {
23
27
"type" : "string"
24
-
}
28
+
},
29
+
"description" : "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."
25
30
},
26
31
"UserSettings" : {
27
32
"type" : "array",
28
33
"uniqueItems" : false,
29
34
"items" : {
30
35
"$ref" : "#/definitions/UserSetting"
31
-
}
36
+
},
37
+
"description" : "The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled."
32
38
},
33
39
"AttributesToDelete" : {
34
40
"type" : "array",
35
41
"uniqueItems" : false,
36
42
"items" : {
37
43
"type" : "string"
38
-
}
44
+
},
45
+
"description" : "The stack attributes to delete."
39
46
},
40
47
"RedirectURL" : {
41
-
"type" : "string"
48
+
"type" : "string",
49
+
"description" : "The URL that users are redirected to after their streaming session ends."
"description" : "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."
45
54
},
46
55
"Name" : {
47
-
"type" : "string"
56
+
"type" : "string",
57
+
"description" : "The name of the stack."
48
58
},
49
59
"FeedbackURL" : {
50
-
"type" : "string"
60
+
"type" : "string",
61
+
"description" : "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."
51
62
},
52
63
"ApplicationSettings" : {
53
-
"$ref" : "#/definitions/ApplicationSettings"
64
+
"$ref" : "#/definitions/ApplicationSettings",
65
+
"description" : "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."
54
66
},
55
67
"DisplayName" : {
56
-
"type" : "string"
57
-
},
58
-
"Id" : {
59
-
"type" : "string"
68
+
"type" : "string",
69
+
"description" : "The stack name to display."
60
70
},
61
71
"Tags" : {
62
72
"type" : "array",
63
73
"uniqueItems" : false,
64
74
"items" : {
65
75
"$ref" : "#/definitions/Tag"
66
-
}
76
+
},
77
+
"description" : "An array of key-value pairs."
67
78
},
68
79
"AccessEndpoints" : {
69
80
"type" : "array",
70
81
"uniqueItems" : false,
71
82
"items" : {
72
83
"$ref" : "#/definitions/AccessEndpoint"
73
-
}
84
+
},
85
+
"description" : "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."
74
86
}
75
87
},
76
88
"definitions" : {
77
89
"StorageConnector" : {
78
90
"type" : "object",
79
91
"additionalProperties" : false,
92
+
"description" : "A connector that enables persistent storage for users.",
80
93
"properties" : {
81
94
"Domains" : {
82
95
"type" : "array",
83
96
"uniqueItems" : false,
84
97
"items" : {
85
98
"type" : "string"
86
-
}
99
+
},
100
+
"description" : "The names of the domains for the account."
87
101
},
88
102
"ResourceIdentifier" : {
89
-
"type" : "string"
103
+
"type" : "string",
104
+
"description" : "The ARN of the storage connector."
90
105
},
91
106
"ConnectorType" : {
92
-
"type" : "string"
107
+
"type" : "string",
108
+
"description" : "The type of storage connector."
93
109
}
94
110
},
95
111
"required" : [ "ConnectorType" ]
96
112
},
97
113
"ApplicationSettings" : {
98
114
"type" : "object",
99
115
"additionalProperties" : false,
116
+
"description" : "The persistent application settings for users of a stack.",
100
117
"properties" : {
101
118
"SettingsGroup" : {
102
-
"type" : "string"
119
+
"type" : "string",
120
+
"description" : "The path prefix for the S3 bucket where users’ persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack."
103
121
},
104
122
"Enabled" : {
105
-
"type" : "boolean"
123
+
"type" : "boolean",
124
+
"description" : "Enables or disables persistent application settings for users during their streaming sessions."
106
125
}
107
126
},
108
127
"required" : [ "Enabled" ]
109
128
},
110
129
"StreamingExperienceSettings" : {
111
130
"type" : "object",
112
131
"additionalProperties" : false,
132
+
"description" : "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.",
113
133
"properties" : {
114
134
"PreferredProtocol" : {
115
-
"type" : "string"
135
+
"type" : "string",
136
+
"description" : "The preferred protocol that you want to use while streaming your application."
116
137
}
117
138
}
118
139
},
119
140
"Tag" : {
120
141
"type" : "object",
121
142
"additionalProperties" : false,
143
+
"description" : "The tag of the stack.",
122
144
"properties" : {
123
145
"Value" : {
124
-
"type" : "string"
146
+
"type" : "string",
147
+
"description" : "The value of the tag."
125
148
},
126
149
"Key" : {
127
-
"type" : "string"
150
+
"type" : "string",
151
+
"description" : "The key of the tag."
128
152
}
129
153
},
130
154
"required" : [ "Value", "Key" ]
131
155
},
132
156
"AccessEndpoint" : {
133
157
"type" : "object",
134
158
"additionalProperties" : false,
159
+
"description" : "Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and AppStream 2.0. When you specify an interface endpoint for a stack, users of the stack can connect to AppStream 2.0 only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that endpoint.",
135
160
"properties" : {
136
161
"EndpointType" : {
137
-
"type" : "string"
162
+
"type" : "string",
163
+
"description" : "The type of interface endpoint."
138
164
},
139
165
"VpceId" : {
140
-
"type" : "string"
166
+
"type" : "string",
167
+
"description" : "The identifier (ID) of the VPC in which the interface endpoint is used."
141
168
}
142
169
},
143
170
"required" : [ "EndpointType", "VpceId" ]
144
171
},
145
172
"UserSetting" : {
146
173
"type" : "object",
147
174
"additionalProperties" : false,
175
+
"description" : "Specifies an action and whether the action is enabled or disabled for users during their streaming sessions.",
148
176
"properties" : {
149
177
"Permission" : {
150
-
"type" : "string"
178
+
"type" : "string",
179
+
"description" : "Indicates whether the action is enabled or disabled."
151
180
},
152
181
"Action" : {
153
-
"type" : "string"
182
+
"type" : "string",
183
+
"description" : "The action that is enabled or disabled."
154
184
},
155
185
"MaximumLength" : {
156
-
"type" : "integer"
186
+
"type" : "integer",
187
+
"description" : "Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session. This can be specified only for the CLIPBOARD_COPY_FROM_LOCAL_DEVICE and CLIPBOARD_COPY_TO_LOCAL_DEVICE actions. This defaults to 20,971,520 (20 MB) when unspecified and the permission is ENABLED. This can't be specified when the permission is DISABLED. The value can be between 1 and 20,971,520 (20 MB)."
"description" : "The ARN of the policy engine. The policy engine contains Cedar policies that define fine-grained authorization rules specifying who can perform what actions on which resources as agents interact through the gateway.",
0 commit comments