aws-sdk-opsworks 1.51.0 → 1.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opsworks/client.rb +1 -1
- data/lib/aws-sdk-opsworks/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-opsworks.rb +1 -1
- data/sig/client.rbs +1122 -0
- data/sig/errors.rbs +22 -0
- data/sig/layer.rbs +114 -0
- data/sig/resource.rbs +129 -0
- data/sig/stack.rbs +177 -0
- data/sig/stack_summary.rbs +55 -0
- data/sig/types.rbs +1269 -0
- data/sig/waiters.rbs +84 -0
- metadata +16 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1269 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::OpsWorks
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AgentVersion
|
12
|
+
attr_accessor version: ::String
|
13
|
+
attr_accessor configuration_manager: Types::StackConfigurationManager
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class App
|
18
|
+
attr_accessor app_id: ::String
|
19
|
+
attr_accessor stack_id: ::String
|
20
|
+
attr_accessor shortname: ::String
|
21
|
+
attr_accessor name: ::String
|
22
|
+
attr_accessor description: ::String
|
23
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
24
|
+
attr_accessor type: ("aws-flow-ruby" | "java" | "rails" | "php" | "nodejs" | "static" | "other")
|
25
|
+
attr_accessor app_source: Types::Source
|
26
|
+
attr_accessor domains: ::Array[::String]
|
27
|
+
attr_accessor enable_ssl: bool
|
28
|
+
attr_accessor ssl_configuration: Types::SslConfiguration
|
29
|
+
attr_accessor attributes: ::Hash[("DocumentRoot" | "RailsEnv" | "AutoBundleOnDeploy" | "AwsFlowRubySettings"), ::String]
|
30
|
+
attr_accessor created_at: ::String
|
31
|
+
attr_accessor environment: ::Array[Types::EnvironmentVariable]
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class AssignInstanceRequest
|
36
|
+
attr_accessor instance_id: ::String
|
37
|
+
attr_accessor layer_ids: ::Array[::String]
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class AssignVolumeRequest
|
42
|
+
attr_accessor volume_id: ::String
|
43
|
+
attr_accessor instance_id: ::String
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class AssociateElasticIpRequest
|
48
|
+
attr_accessor elastic_ip: ::String
|
49
|
+
attr_accessor instance_id: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class AttachElasticLoadBalancerRequest
|
54
|
+
attr_accessor elastic_load_balancer_name: ::String
|
55
|
+
attr_accessor layer_id: ::String
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class AutoScalingThresholds
|
60
|
+
attr_accessor instance_count: ::Integer
|
61
|
+
attr_accessor thresholds_wait_time: ::Integer
|
62
|
+
attr_accessor ignore_metrics_time: ::Integer
|
63
|
+
attr_accessor cpu_threshold: ::Float
|
64
|
+
attr_accessor memory_threshold: ::Float
|
65
|
+
attr_accessor load_threshold: ::Float
|
66
|
+
attr_accessor alarms: ::Array[::String]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class BlockDeviceMapping
|
71
|
+
attr_accessor device_name: ::String
|
72
|
+
attr_accessor no_device: ::String
|
73
|
+
attr_accessor virtual_name: ::String
|
74
|
+
attr_accessor ebs: Types::EbsBlockDevice
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class ChefConfiguration
|
79
|
+
attr_accessor manage_berkshelf: bool
|
80
|
+
attr_accessor berkshelf_version: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class CloneStackRequest
|
85
|
+
attr_accessor source_stack_id: ::String
|
86
|
+
attr_accessor name: ::String
|
87
|
+
attr_accessor region: ::String
|
88
|
+
attr_accessor vpc_id: ::String
|
89
|
+
attr_accessor attributes: ::Hash[("Color"), ::String]
|
90
|
+
attr_accessor service_role_arn: ::String
|
91
|
+
attr_accessor default_instance_profile_arn: ::String
|
92
|
+
attr_accessor default_os: ::String
|
93
|
+
attr_accessor hostname_theme: ::String
|
94
|
+
attr_accessor default_availability_zone: ::String
|
95
|
+
attr_accessor default_subnet_id: ::String
|
96
|
+
attr_accessor custom_json: ::String
|
97
|
+
attr_accessor configuration_manager: Types::StackConfigurationManager
|
98
|
+
attr_accessor chef_configuration: Types::ChefConfiguration
|
99
|
+
attr_accessor use_custom_cookbooks: bool
|
100
|
+
attr_accessor use_opsworks_security_groups: bool
|
101
|
+
attr_accessor custom_cookbooks_source: Types::Source
|
102
|
+
attr_accessor default_ssh_key_name: ::String
|
103
|
+
attr_accessor clone_permissions: bool
|
104
|
+
attr_accessor clone_app_ids: ::Array[::String]
|
105
|
+
attr_accessor default_root_device_type: ("ebs" | "instance-store")
|
106
|
+
attr_accessor agent_version: ::String
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class CloneStackResult
|
111
|
+
attr_accessor stack_id: ::String
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class CloudWatchLogsConfiguration
|
116
|
+
attr_accessor enabled: bool
|
117
|
+
attr_accessor log_streams: ::Array[Types::CloudWatchLogsLogStream]
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class CloudWatchLogsLogStream
|
122
|
+
attr_accessor log_group_name: ::String
|
123
|
+
attr_accessor datetime_format: ::String
|
124
|
+
attr_accessor time_zone: ("LOCAL" | "UTC")
|
125
|
+
attr_accessor file: ::String
|
126
|
+
attr_accessor file_fingerprint_lines: ::String
|
127
|
+
attr_accessor multi_line_start_pattern: ::String
|
128
|
+
attr_accessor initial_position: ("start_of_file" | "end_of_file")
|
129
|
+
attr_accessor encoding: ("ascii" | "big5" | "big5hkscs" | "cp037" | "cp424" | "cp437" | "cp500" | "cp720" | "cp737" | "cp775" | "cp850" | "cp852" | "cp855" | "cp856" | "cp857" | "cp858" | "cp860" | "cp861" | "cp862" | "cp863" | "cp864" | "cp865" | "cp866" | "cp869" | "cp874" | "cp875" | "cp932" | "cp949" | "cp950" | "cp1006" | "cp1026" | "cp1140" | "cp1250" | "cp1251" | "cp1252" | "cp1253" | "cp1254" | "cp1255" | "cp1256" | "cp1257" | "cp1258" | "euc_jp" | "euc_jis_2004" | "euc_jisx0213" | "euc_kr" | "gb2312" | "gbk" | "gb18030" | "hz" | "iso2022_jp" | "iso2022_jp_1" | "iso2022_jp_2" | "iso2022_jp_2004" | "iso2022_jp_3" | "iso2022_jp_ext" | "iso2022_kr" | "latin_1" | "iso8859_2" | "iso8859_3" | "iso8859_4" | "iso8859_5" | "iso8859_6" | "iso8859_7" | "iso8859_8" | "iso8859_9" | "iso8859_10" | "iso8859_13" | "iso8859_14" | "iso8859_15" | "iso8859_16" | "johab" | "koi8_r" | "koi8_u" | "mac_cyrillic" | "mac_greek" | "mac_iceland" | "mac_latin2" | "mac_roman" | "mac_turkish" | "ptcp154" | "shift_jis" | "shift_jis_2004" | "shift_jisx0213" | "utf_32" | "utf_32_be" | "utf_32_le" | "utf_16" | "utf_16_be" | "utf_16_le" | "utf_7" | "utf_8" | "utf_8_sig")
|
130
|
+
attr_accessor buffer_duration: ::Integer
|
131
|
+
attr_accessor batch_count: ::Integer
|
132
|
+
attr_accessor batch_size: ::Integer
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class Command
|
137
|
+
attr_accessor command_id: ::String
|
138
|
+
attr_accessor instance_id: ::String
|
139
|
+
attr_accessor deployment_id: ::String
|
140
|
+
attr_accessor created_at: ::String
|
141
|
+
attr_accessor acknowledged_at: ::String
|
142
|
+
attr_accessor completed_at: ::String
|
143
|
+
attr_accessor status: ::String
|
144
|
+
attr_accessor exit_code: ::Integer
|
145
|
+
attr_accessor log_url: ::String
|
146
|
+
attr_accessor type: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class CreateAppRequest
|
151
|
+
attr_accessor stack_id: ::String
|
152
|
+
attr_accessor shortname: ::String
|
153
|
+
attr_accessor name: ::String
|
154
|
+
attr_accessor description: ::String
|
155
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
156
|
+
attr_accessor type: ("aws-flow-ruby" | "java" | "rails" | "php" | "nodejs" | "static" | "other")
|
157
|
+
attr_accessor app_source: Types::Source
|
158
|
+
attr_accessor domains: ::Array[::String]
|
159
|
+
attr_accessor enable_ssl: bool
|
160
|
+
attr_accessor ssl_configuration: Types::SslConfiguration
|
161
|
+
attr_accessor attributes: ::Hash[("DocumentRoot" | "RailsEnv" | "AutoBundleOnDeploy" | "AwsFlowRubySettings"), ::String]
|
162
|
+
attr_accessor environment: ::Array[Types::EnvironmentVariable]
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class CreateAppResult
|
167
|
+
attr_accessor app_id: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class CreateDeploymentRequest
|
172
|
+
attr_accessor stack_id: ::String
|
173
|
+
attr_accessor app_id: ::String
|
174
|
+
attr_accessor instance_ids: ::Array[::String]
|
175
|
+
attr_accessor layer_ids: ::Array[::String]
|
176
|
+
attr_accessor command: Types::DeploymentCommand
|
177
|
+
attr_accessor comment: ::String
|
178
|
+
attr_accessor custom_json: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class CreateDeploymentResult
|
183
|
+
attr_accessor deployment_id: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class CreateInstanceRequest
|
188
|
+
attr_accessor stack_id: ::String
|
189
|
+
attr_accessor layer_ids: ::Array[::String]
|
190
|
+
attr_accessor instance_type: ::String
|
191
|
+
attr_accessor auto_scaling_type: ("load" | "timer")
|
192
|
+
attr_accessor hostname: ::String
|
193
|
+
attr_accessor os: ::String
|
194
|
+
attr_accessor ami_id: ::String
|
195
|
+
attr_accessor ssh_key_name: ::String
|
196
|
+
attr_accessor availability_zone: ::String
|
197
|
+
attr_accessor virtualization_type: ::String
|
198
|
+
attr_accessor subnet_id: ::String
|
199
|
+
attr_accessor architecture: ("x86_64" | "i386")
|
200
|
+
attr_accessor root_device_type: ("ebs" | "instance-store")
|
201
|
+
attr_accessor block_device_mappings: ::Array[Types::BlockDeviceMapping]
|
202
|
+
attr_accessor install_updates_on_boot: bool
|
203
|
+
attr_accessor ebs_optimized: bool
|
204
|
+
attr_accessor agent_version: ::String
|
205
|
+
attr_accessor tenancy: ::String
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class CreateInstanceResult
|
210
|
+
attr_accessor instance_id: ::String
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CreateLayerRequest
|
215
|
+
attr_accessor stack_id: ::String
|
216
|
+
attr_accessor type: ("aws-flow-ruby" | "ecs-cluster" | "java-app" | "lb" | "web" | "php-app" | "rails-app" | "nodejs-app" | "memcached" | "db-master" | "monitoring-master" | "custom")
|
217
|
+
attr_accessor name: ::String
|
218
|
+
attr_accessor shortname: ::String
|
219
|
+
attr_accessor attributes: ::Hash[("EcsClusterArn" | "EnableHaproxyStats" | "HaproxyStatsUrl" | "HaproxyStatsUser" | "HaproxyStatsPassword" | "HaproxyHealthCheckUrl" | "HaproxyHealthCheckMethod" | "MysqlRootPassword" | "MysqlRootPasswordUbiquitous" | "GangliaUrl" | "GangliaUser" | "GangliaPassword" | "MemcachedMemory" | "NodejsVersion" | "RubyVersion" | "RubygemsVersion" | "ManageBundler" | "BundlerVersion" | "RailsStack" | "PassengerVersion" | "Jvm" | "JvmVersion" | "JvmOptions" | "JavaAppServer" | "JavaAppServerVersion"), ::String]
|
220
|
+
attr_accessor cloud_watch_logs_configuration: Types::CloudWatchLogsConfiguration
|
221
|
+
attr_accessor custom_instance_profile_arn: ::String
|
222
|
+
attr_accessor custom_json: ::String
|
223
|
+
attr_accessor custom_security_group_ids: ::Array[::String]
|
224
|
+
attr_accessor packages: ::Array[::String]
|
225
|
+
attr_accessor volume_configurations: ::Array[Types::VolumeConfiguration]
|
226
|
+
attr_accessor enable_auto_healing: bool
|
227
|
+
attr_accessor auto_assign_elastic_ips: bool
|
228
|
+
attr_accessor auto_assign_public_ips: bool
|
229
|
+
attr_accessor custom_recipes: Types::Recipes
|
230
|
+
attr_accessor install_updates_on_boot: bool
|
231
|
+
attr_accessor use_ebs_optimized_instances: bool
|
232
|
+
attr_accessor lifecycle_event_configuration: Types::LifecycleEventConfiguration
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class CreateLayerResult
|
237
|
+
attr_accessor layer_id: ::String
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class CreateStackRequest
|
242
|
+
attr_accessor name: ::String
|
243
|
+
attr_accessor region: ::String
|
244
|
+
attr_accessor vpc_id: ::String
|
245
|
+
attr_accessor attributes: ::Hash[("Color"), ::String]
|
246
|
+
attr_accessor service_role_arn: ::String
|
247
|
+
attr_accessor default_instance_profile_arn: ::String
|
248
|
+
attr_accessor default_os: ::String
|
249
|
+
attr_accessor hostname_theme: ::String
|
250
|
+
attr_accessor default_availability_zone: ::String
|
251
|
+
attr_accessor default_subnet_id: ::String
|
252
|
+
attr_accessor custom_json: ::String
|
253
|
+
attr_accessor configuration_manager: Types::StackConfigurationManager
|
254
|
+
attr_accessor chef_configuration: Types::ChefConfiguration
|
255
|
+
attr_accessor use_custom_cookbooks: bool
|
256
|
+
attr_accessor use_opsworks_security_groups: bool
|
257
|
+
attr_accessor custom_cookbooks_source: Types::Source
|
258
|
+
attr_accessor default_ssh_key_name: ::String
|
259
|
+
attr_accessor default_root_device_type: ("ebs" | "instance-store")
|
260
|
+
attr_accessor agent_version: ::String
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class CreateStackResult
|
265
|
+
attr_accessor stack_id: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class CreateUserProfileRequest
|
270
|
+
attr_accessor iam_user_arn: ::String
|
271
|
+
attr_accessor ssh_username: ::String
|
272
|
+
attr_accessor ssh_public_key: ::String
|
273
|
+
attr_accessor allow_self_management: bool
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class CreateUserProfileResult
|
278
|
+
attr_accessor iam_user_arn: ::String
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class DataSource
|
283
|
+
attr_accessor type: ::String
|
284
|
+
attr_accessor arn: ::String
|
285
|
+
attr_accessor database_name: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class DeleteAppRequest
|
290
|
+
attr_accessor app_id: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class DeleteInstanceRequest
|
295
|
+
attr_accessor instance_id: ::String
|
296
|
+
attr_accessor delete_elastic_ip: bool
|
297
|
+
attr_accessor delete_volumes: bool
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class DeleteLayerRequest
|
302
|
+
attr_accessor layer_id: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class DeleteStackRequest
|
307
|
+
attr_accessor stack_id: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class DeleteUserProfileRequest
|
312
|
+
attr_accessor iam_user_arn: ::String
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class Deployment
|
317
|
+
attr_accessor deployment_id: ::String
|
318
|
+
attr_accessor stack_id: ::String
|
319
|
+
attr_accessor app_id: ::String
|
320
|
+
attr_accessor created_at: ::String
|
321
|
+
attr_accessor completed_at: ::String
|
322
|
+
attr_accessor duration: ::Integer
|
323
|
+
attr_accessor iam_user_arn: ::String
|
324
|
+
attr_accessor comment: ::String
|
325
|
+
attr_accessor command: Types::DeploymentCommand
|
326
|
+
attr_accessor status: ::String
|
327
|
+
attr_accessor custom_json: ::String
|
328
|
+
attr_accessor instance_ids: ::Array[::String]
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class DeploymentCommand
|
333
|
+
attr_accessor name: ("install_dependencies" | "update_dependencies" | "update_custom_cookbooks" | "execute_recipes" | "configure" | "setup" | "deploy" | "rollback" | "start" | "stop" | "restart" | "undeploy")
|
334
|
+
attr_accessor args: ::Hash[::String, ::Array[::String]]
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class DeregisterEcsClusterRequest
|
339
|
+
attr_accessor ecs_cluster_arn: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class DeregisterElasticIpRequest
|
344
|
+
attr_accessor elastic_ip: ::String
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class DeregisterInstanceRequest
|
349
|
+
attr_accessor instance_id: ::String
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class DeregisterRdsDbInstanceRequest
|
354
|
+
attr_accessor rds_db_instance_arn: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DeregisterVolumeRequest
|
359
|
+
attr_accessor volume_id: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class DescribeAgentVersionsRequest
|
364
|
+
attr_accessor stack_id: ::String
|
365
|
+
attr_accessor configuration_manager: Types::StackConfigurationManager
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class DescribeAgentVersionsResult
|
370
|
+
attr_accessor agent_versions: ::Array[Types::AgentVersion]
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class DescribeAppsRequest
|
375
|
+
attr_accessor stack_id: ::String
|
376
|
+
attr_accessor app_ids: ::Array[::String]
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class DescribeAppsResult
|
381
|
+
attr_accessor apps: ::Array[Types::App]
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class DescribeCommandsRequest
|
386
|
+
attr_accessor deployment_id: ::String
|
387
|
+
attr_accessor instance_id: ::String
|
388
|
+
attr_accessor command_ids: ::Array[::String]
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class DescribeCommandsResult
|
393
|
+
attr_accessor commands: ::Array[Types::Command]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class DescribeDeploymentsRequest
|
398
|
+
attr_accessor stack_id: ::String
|
399
|
+
attr_accessor app_id: ::String
|
400
|
+
attr_accessor deployment_ids: ::Array[::String]
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class DescribeDeploymentsResult
|
405
|
+
attr_accessor deployments: ::Array[Types::Deployment]
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class DescribeEcsClustersRequest
|
410
|
+
attr_accessor ecs_cluster_arns: ::Array[::String]
|
411
|
+
attr_accessor stack_id: ::String
|
412
|
+
attr_accessor next_token: ::String
|
413
|
+
attr_accessor max_results: ::Integer
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class DescribeEcsClustersResult
|
418
|
+
attr_accessor ecs_clusters: ::Array[Types::EcsCluster]
|
419
|
+
attr_accessor next_token: ::String
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class DescribeElasticIpsRequest
|
424
|
+
attr_accessor instance_id: ::String
|
425
|
+
attr_accessor stack_id: ::String
|
426
|
+
attr_accessor ips: ::Array[::String]
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class DescribeElasticIpsResult
|
431
|
+
attr_accessor elastic_ips: ::Array[Types::ElasticIp]
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class DescribeElasticLoadBalancersRequest
|
436
|
+
attr_accessor stack_id: ::String
|
437
|
+
attr_accessor layer_ids: ::Array[::String]
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class DescribeElasticLoadBalancersResult
|
442
|
+
attr_accessor elastic_load_balancers: ::Array[Types::ElasticLoadBalancer]
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DescribeInstancesRequest
|
447
|
+
attr_accessor stack_id: ::String
|
448
|
+
attr_accessor layer_id: ::String
|
449
|
+
attr_accessor instance_ids: ::Array[::String]
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class DescribeInstancesResult
|
454
|
+
attr_accessor instances: ::Array[Types::Instance]
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class DescribeLayersRequest
|
459
|
+
attr_accessor stack_id: ::String
|
460
|
+
attr_accessor layer_ids: ::Array[::String]
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class DescribeLayersResult
|
465
|
+
attr_accessor layers: ::Array[Types::Layer]
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class DescribeLoadBasedAutoScalingRequest
|
470
|
+
attr_accessor layer_ids: ::Array[::String]
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class DescribeLoadBasedAutoScalingResult
|
475
|
+
attr_accessor load_based_auto_scaling_configurations: ::Array[Types::LoadBasedAutoScalingConfiguration]
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class DescribeMyUserProfileResult
|
480
|
+
attr_accessor user_profile: Types::SelfUserProfile
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class DescribeOperatingSystemsResponse
|
485
|
+
attr_accessor operating_systems: ::Array[Types::OperatingSystem]
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class DescribePermissionsRequest
|
490
|
+
attr_accessor iam_user_arn: ::String
|
491
|
+
attr_accessor stack_id: ::String
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
495
|
+
class DescribePermissionsResult
|
496
|
+
attr_accessor permissions: ::Array[Types::Permission]
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class DescribeRaidArraysRequest
|
501
|
+
attr_accessor instance_id: ::String
|
502
|
+
attr_accessor stack_id: ::String
|
503
|
+
attr_accessor raid_array_ids: ::Array[::String]
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class DescribeRaidArraysResult
|
508
|
+
attr_accessor raid_arrays: ::Array[Types::RaidArray]
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class DescribeRdsDbInstancesRequest
|
513
|
+
attr_accessor stack_id: ::String
|
514
|
+
attr_accessor rds_db_instance_arns: ::Array[::String]
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class DescribeRdsDbInstancesResult
|
519
|
+
attr_accessor rds_db_instances: ::Array[Types::RdsDbInstance]
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class DescribeServiceErrorsRequest
|
524
|
+
attr_accessor stack_id: ::String
|
525
|
+
attr_accessor instance_id: ::String
|
526
|
+
attr_accessor service_error_ids: ::Array[::String]
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class DescribeServiceErrorsResult
|
531
|
+
attr_accessor service_errors: ::Array[Types::ServiceError]
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
535
|
+
class DescribeStackProvisioningParametersRequest
|
536
|
+
attr_accessor stack_id: ::String
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class DescribeStackProvisioningParametersResult
|
541
|
+
attr_accessor agent_installer_url: ::String
|
542
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class DescribeStackSummaryRequest
|
547
|
+
attr_accessor stack_id: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class DescribeStackSummaryResult
|
552
|
+
attr_accessor stack_summary: Types::StackSummary
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class DescribeStacksRequest
|
557
|
+
attr_accessor stack_ids: ::Array[::String]
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class DescribeStacksResult
|
562
|
+
attr_accessor stacks: ::Array[Types::Stack]
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class DescribeTimeBasedAutoScalingRequest
|
567
|
+
attr_accessor instance_ids: ::Array[::String]
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class DescribeTimeBasedAutoScalingResult
|
572
|
+
attr_accessor time_based_auto_scaling_configurations: ::Array[Types::TimeBasedAutoScalingConfiguration]
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class DescribeUserProfilesRequest
|
577
|
+
attr_accessor iam_user_arns: ::Array[::String]
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class DescribeUserProfilesResult
|
582
|
+
attr_accessor user_profiles: ::Array[Types::UserProfile]
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class DescribeVolumesRequest
|
587
|
+
attr_accessor instance_id: ::String
|
588
|
+
attr_accessor stack_id: ::String
|
589
|
+
attr_accessor raid_array_id: ::String
|
590
|
+
attr_accessor volume_ids: ::Array[::String]
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class DescribeVolumesResult
|
595
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class DetachElasticLoadBalancerRequest
|
600
|
+
attr_accessor elastic_load_balancer_name: ::String
|
601
|
+
attr_accessor layer_id: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class DisassociateElasticIpRequest
|
606
|
+
attr_accessor elastic_ip: ::String
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
610
|
+
class EbsBlockDevice
|
611
|
+
attr_accessor snapshot_id: ::String
|
612
|
+
attr_accessor iops: ::Integer
|
613
|
+
attr_accessor volume_size: ::Integer
|
614
|
+
attr_accessor volume_type: ("gp2" | "io1" | "standard")
|
615
|
+
attr_accessor delete_on_termination: bool
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class EcsCluster
|
620
|
+
attr_accessor ecs_cluster_arn: ::String
|
621
|
+
attr_accessor ecs_cluster_name: ::String
|
622
|
+
attr_accessor stack_id: ::String
|
623
|
+
attr_accessor registered_at: ::String
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class ElasticIp
|
628
|
+
attr_accessor ip: ::String
|
629
|
+
attr_accessor name: ::String
|
630
|
+
attr_accessor domain: ::String
|
631
|
+
attr_accessor region: ::String
|
632
|
+
attr_accessor instance_id: ::String
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class ElasticLoadBalancer
|
637
|
+
attr_accessor elastic_load_balancer_name: ::String
|
638
|
+
attr_accessor region: ::String
|
639
|
+
attr_accessor dns_name: ::String
|
640
|
+
attr_accessor stack_id: ::String
|
641
|
+
attr_accessor layer_id: ::String
|
642
|
+
attr_accessor vpc_id: ::String
|
643
|
+
attr_accessor availability_zones: ::Array[::String]
|
644
|
+
attr_accessor subnet_ids: ::Array[::String]
|
645
|
+
attr_accessor ec2_instance_ids: ::Array[::String]
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class EnvironmentVariable
|
650
|
+
attr_accessor key: ::String
|
651
|
+
attr_accessor value: ::String
|
652
|
+
attr_accessor secure: bool
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class GetHostnameSuggestionRequest
|
657
|
+
attr_accessor layer_id: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class GetHostnameSuggestionResult
|
662
|
+
attr_accessor layer_id: ::String
|
663
|
+
attr_accessor hostname: ::String
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class GrantAccessRequest
|
668
|
+
attr_accessor instance_id: ::String
|
669
|
+
attr_accessor valid_for_in_minutes: ::Integer
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class GrantAccessResult
|
674
|
+
attr_accessor temporary_credential: Types::TemporaryCredential
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class Instance
|
679
|
+
attr_accessor agent_version: ::String
|
680
|
+
attr_accessor ami_id: ::String
|
681
|
+
attr_accessor architecture: ("x86_64" | "i386")
|
682
|
+
attr_accessor arn: ::String
|
683
|
+
attr_accessor auto_scaling_type: ("load" | "timer")
|
684
|
+
attr_accessor availability_zone: ::String
|
685
|
+
attr_accessor block_device_mappings: ::Array[Types::BlockDeviceMapping]
|
686
|
+
attr_accessor created_at: ::String
|
687
|
+
attr_accessor ebs_optimized: bool
|
688
|
+
attr_accessor ec2_instance_id: ::String
|
689
|
+
attr_accessor ecs_cluster_arn: ::String
|
690
|
+
attr_accessor ecs_container_instance_arn: ::String
|
691
|
+
attr_accessor elastic_ip: ::String
|
692
|
+
attr_accessor hostname: ::String
|
693
|
+
attr_accessor infrastructure_class: ::String
|
694
|
+
attr_accessor install_updates_on_boot: bool
|
695
|
+
attr_accessor instance_id: ::String
|
696
|
+
attr_accessor instance_profile_arn: ::String
|
697
|
+
attr_accessor instance_type: ::String
|
698
|
+
attr_accessor last_service_error_id: ::String
|
699
|
+
attr_accessor layer_ids: ::Array[::String]
|
700
|
+
attr_accessor os: ::String
|
701
|
+
attr_accessor platform: ::String
|
702
|
+
attr_accessor private_dns: ::String
|
703
|
+
attr_accessor private_ip: ::String
|
704
|
+
attr_accessor public_dns: ::String
|
705
|
+
attr_accessor public_ip: ::String
|
706
|
+
attr_accessor registered_by: ::String
|
707
|
+
attr_accessor reported_agent_version: ::String
|
708
|
+
attr_accessor reported_os: Types::ReportedOs
|
709
|
+
attr_accessor root_device_type: ("ebs" | "instance-store")
|
710
|
+
attr_accessor root_device_volume_id: ::String
|
711
|
+
attr_accessor security_group_ids: ::Array[::String]
|
712
|
+
attr_accessor ssh_host_dsa_key_fingerprint: ::String
|
713
|
+
attr_accessor ssh_host_rsa_key_fingerprint: ::String
|
714
|
+
attr_accessor ssh_key_name: ::String
|
715
|
+
attr_accessor stack_id: ::String
|
716
|
+
attr_accessor status: ::String
|
717
|
+
attr_accessor subnet_id: ::String
|
718
|
+
attr_accessor tenancy: ::String
|
719
|
+
attr_accessor virtualization_type: ("paravirtual" | "hvm")
|
720
|
+
SENSITIVE: []
|
721
|
+
end
|
722
|
+
|
723
|
+
class InstanceIdentity
|
724
|
+
attr_accessor document: ::String
|
725
|
+
attr_accessor signature: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class InstancesCount
|
730
|
+
attr_accessor assigning: ::Integer
|
731
|
+
attr_accessor booting: ::Integer
|
732
|
+
attr_accessor connection_lost: ::Integer
|
733
|
+
attr_accessor deregistering: ::Integer
|
734
|
+
attr_accessor online: ::Integer
|
735
|
+
attr_accessor pending: ::Integer
|
736
|
+
attr_accessor rebooting: ::Integer
|
737
|
+
attr_accessor registered: ::Integer
|
738
|
+
attr_accessor registering: ::Integer
|
739
|
+
attr_accessor requested: ::Integer
|
740
|
+
attr_accessor running_setup: ::Integer
|
741
|
+
attr_accessor setup_failed: ::Integer
|
742
|
+
attr_accessor shutting_down: ::Integer
|
743
|
+
attr_accessor start_failed: ::Integer
|
744
|
+
attr_accessor stop_failed: ::Integer
|
745
|
+
attr_accessor stopped: ::Integer
|
746
|
+
attr_accessor stopping: ::Integer
|
747
|
+
attr_accessor terminated: ::Integer
|
748
|
+
attr_accessor terminating: ::Integer
|
749
|
+
attr_accessor unassigning: ::Integer
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class Layer
|
754
|
+
attr_accessor arn: ::String
|
755
|
+
attr_accessor stack_id: ::String
|
756
|
+
attr_accessor layer_id: ::String
|
757
|
+
attr_accessor type: ("aws-flow-ruby" | "ecs-cluster" | "java-app" | "lb" | "web" | "php-app" | "rails-app" | "nodejs-app" | "memcached" | "db-master" | "monitoring-master" | "custom")
|
758
|
+
attr_accessor name: ::String
|
759
|
+
attr_accessor shortname: ::String
|
760
|
+
attr_accessor attributes: ::Hash[("EcsClusterArn" | "EnableHaproxyStats" | "HaproxyStatsUrl" | "HaproxyStatsUser" | "HaproxyStatsPassword" | "HaproxyHealthCheckUrl" | "HaproxyHealthCheckMethod" | "MysqlRootPassword" | "MysqlRootPasswordUbiquitous" | "GangliaUrl" | "GangliaUser" | "GangliaPassword" | "MemcachedMemory" | "NodejsVersion" | "RubyVersion" | "RubygemsVersion" | "ManageBundler" | "BundlerVersion" | "RailsStack" | "PassengerVersion" | "Jvm" | "JvmVersion" | "JvmOptions" | "JavaAppServer" | "JavaAppServerVersion"), ::String]
|
761
|
+
attr_accessor cloud_watch_logs_configuration: Types::CloudWatchLogsConfiguration
|
762
|
+
attr_accessor custom_instance_profile_arn: ::String
|
763
|
+
attr_accessor custom_json: ::String
|
764
|
+
attr_accessor custom_security_group_ids: ::Array[::String]
|
765
|
+
attr_accessor default_security_group_names: ::Array[::String]
|
766
|
+
attr_accessor packages: ::Array[::String]
|
767
|
+
attr_accessor volume_configurations: ::Array[Types::VolumeConfiguration]
|
768
|
+
attr_accessor enable_auto_healing: bool
|
769
|
+
attr_accessor auto_assign_elastic_ips: bool
|
770
|
+
attr_accessor auto_assign_public_ips: bool
|
771
|
+
attr_accessor default_recipes: Types::Recipes
|
772
|
+
attr_accessor custom_recipes: Types::Recipes
|
773
|
+
attr_accessor created_at: ::String
|
774
|
+
attr_accessor install_updates_on_boot: bool
|
775
|
+
attr_accessor use_ebs_optimized_instances: bool
|
776
|
+
attr_accessor lifecycle_event_configuration: Types::LifecycleEventConfiguration
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
780
|
+
class LifecycleEventConfiguration
|
781
|
+
attr_accessor shutdown: Types::ShutdownEventConfiguration
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class ListTagsRequest
|
786
|
+
attr_accessor resource_arn: ::String
|
787
|
+
attr_accessor max_results: ::Integer
|
788
|
+
attr_accessor next_token: ::String
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class ListTagsResult
|
793
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
794
|
+
attr_accessor next_token: ::String
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class LoadBasedAutoScalingConfiguration
|
799
|
+
attr_accessor layer_id: ::String
|
800
|
+
attr_accessor enable: bool
|
801
|
+
attr_accessor up_scaling: Types::AutoScalingThresholds
|
802
|
+
attr_accessor down_scaling: Types::AutoScalingThresholds
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class OperatingSystem
|
807
|
+
attr_accessor name: ::String
|
808
|
+
attr_accessor id: ::String
|
809
|
+
attr_accessor type: ::String
|
810
|
+
attr_accessor configuration_managers: ::Array[Types::OperatingSystemConfigurationManager]
|
811
|
+
attr_accessor reported_name: ::String
|
812
|
+
attr_accessor reported_version: ::String
|
813
|
+
attr_accessor supported: bool
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class OperatingSystemConfigurationManager
|
818
|
+
attr_accessor name: ::String
|
819
|
+
attr_accessor version: ::String
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class Permission
|
824
|
+
attr_accessor stack_id: ::String
|
825
|
+
attr_accessor iam_user_arn: ::String
|
826
|
+
attr_accessor allow_ssh: bool
|
827
|
+
attr_accessor allow_sudo: bool
|
828
|
+
attr_accessor level: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class RaidArray
|
833
|
+
attr_accessor raid_array_id: ::String
|
834
|
+
attr_accessor instance_id: ::String
|
835
|
+
attr_accessor name: ::String
|
836
|
+
attr_accessor raid_level: ::Integer
|
837
|
+
attr_accessor number_of_disks: ::Integer
|
838
|
+
attr_accessor size: ::Integer
|
839
|
+
attr_accessor device: ::String
|
840
|
+
attr_accessor mount_point: ::String
|
841
|
+
attr_accessor availability_zone: ::String
|
842
|
+
attr_accessor created_at: ::String
|
843
|
+
attr_accessor stack_id: ::String
|
844
|
+
attr_accessor volume_type: ::String
|
845
|
+
attr_accessor iops: ::Integer
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class RdsDbInstance
|
850
|
+
attr_accessor rds_db_instance_arn: ::String
|
851
|
+
attr_accessor db_instance_identifier: ::String
|
852
|
+
attr_accessor db_user: ::String
|
853
|
+
attr_accessor db_password: ::String
|
854
|
+
attr_accessor region: ::String
|
855
|
+
attr_accessor address: ::String
|
856
|
+
attr_accessor engine: ::String
|
857
|
+
attr_accessor stack_id: ::String
|
858
|
+
attr_accessor missing_on_rds: bool
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class RebootInstanceRequest
|
863
|
+
attr_accessor instance_id: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class Recipes
|
868
|
+
attr_accessor setup: ::Array[::String]
|
869
|
+
attr_accessor configure: ::Array[::String]
|
870
|
+
attr_accessor deploy: ::Array[::String]
|
871
|
+
attr_accessor undeploy: ::Array[::String]
|
872
|
+
attr_accessor shutdown: ::Array[::String]
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class RegisterEcsClusterRequest
|
877
|
+
attr_accessor ecs_cluster_arn: ::String
|
878
|
+
attr_accessor stack_id: ::String
|
879
|
+
SENSITIVE: []
|
880
|
+
end
|
881
|
+
|
882
|
+
class RegisterEcsClusterResult
|
883
|
+
attr_accessor ecs_cluster_arn: ::String
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class RegisterElasticIpRequest
|
888
|
+
attr_accessor elastic_ip: ::String
|
889
|
+
attr_accessor stack_id: ::String
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
893
|
+
class RegisterElasticIpResult
|
894
|
+
attr_accessor elastic_ip: ::String
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
898
|
+
class RegisterInstanceRequest
|
899
|
+
attr_accessor stack_id: ::String
|
900
|
+
attr_accessor hostname: ::String
|
901
|
+
attr_accessor public_ip: ::String
|
902
|
+
attr_accessor private_ip: ::String
|
903
|
+
attr_accessor rsa_public_key: ::String
|
904
|
+
attr_accessor rsa_public_key_fingerprint: ::String
|
905
|
+
attr_accessor instance_identity: Types::InstanceIdentity
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class RegisterInstanceResult
|
910
|
+
attr_accessor instance_id: ::String
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class RegisterRdsDbInstanceRequest
|
915
|
+
attr_accessor stack_id: ::String
|
916
|
+
attr_accessor rds_db_instance_arn: ::String
|
917
|
+
attr_accessor db_user: ::String
|
918
|
+
attr_accessor db_password: ::String
|
919
|
+
SENSITIVE: []
|
920
|
+
end
|
921
|
+
|
922
|
+
class RegisterVolumeRequest
|
923
|
+
attr_accessor ec2_volume_id: ::String
|
924
|
+
attr_accessor stack_id: ::String
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class RegisterVolumeResult
|
929
|
+
attr_accessor volume_id: ::String
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class ReportedOs
|
934
|
+
attr_accessor family: ::String
|
935
|
+
attr_accessor name: ::String
|
936
|
+
attr_accessor version: ::String
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
940
|
+
class ResourceNotFoundException
|
941
|
+
attr_accessor message: ::String
|
942
|
+
SENSITIVE: []
|
943
|
+
end
|
944
|
+
|
945
|
+
class SelfUserProfile
|
946
|
+
attr_accessor iam_user_arn: ::String
|
947
|
+
attr_accessor name: ::String
|
948
|
+
attr_accessor ssh_username: ::String
|
949
|
+
attr_accessor ssh_public_key: ::String
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class ServiceError
|
954
|
+
attr_accessor service_error_id: ::String
|
955
|
+
attr_accessor stack_id: ::String
|
956
|
+
attr_accessor instance_id: ::String
|
957
|
+
attr_accessor type: ::String
|
958
|
+
attr_accessor message: ::String
|
959
|
+
attr_accessor created_at: ::String
|
960
|
+
SENSITIVE: []
|
961
|
+
end
|
962
|
+
|
963
|
+
class SetLoadBasedAutoScalingRequest
|
964
|
+
attr_accessor layer_id: ::String
|
965
|
+
attr_accessor enable: bool
|
966
|
+
attr_accessor up_scaling: Types::AutoScalingThresholds
|
967
|
+
attr_accessor down_scaling: Types::AutoScalingThresholds
|
968
|
+
SENSITIVE: []
|
969
|
+
end
|
970
|
+
|
971
|
+
class SetPermissionRequest
|
972
|
+
attr_accessor stack_id: ::String
|
973
|
+
attr_accessor iam_user_arn: ::String
|
974
|
+
attr_accessor allow_ssh: bool
|
975
|
+
attr_accessor allow_sudo: bool
|
976
|
+
attr_accessor level: ::String
|
977
|
+
SENSITIVE: []
|
978
|
+
end
|
979
|
+
|
980
|
+
class SetTimeBasedAutoScalingRequest
|
981
|
+
attr_accessor instance_id: ::String
|
982
|
+
attr_accessor auto_scaling_schedule: Types::WeeklyAutoScalingSchedule
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class ShutdownEventConfiguration
|
987
|
+
attr_accessor execution_timeout: ::Integer
|
988
|
+
attr_accessor delay_until_elb_connections_drained: bool
|
989
|
+
SENSITIVE: []
|
990
|
+
end
|
991
|
+
|
992
|
+
class Source
|
993
|
+
attr_accessor type: ("git" | "svn" | "archive" | "s3")
|
994
|
+
attr_accessor url: ::String
|
995
|
+
attr_accessor username: ::String
|
996
|
+
attr_accessor password: ::String
|
997
|
+
attr_accessor ssh_key: ::String
|
998
|
+
attr_accessor revision: ::String
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class SslConfiguration
|
1003
|
+
attr_accessor certificate: ::String
|
1004
|
+
attr_accessor private_key: ::String
|
1005
|
+
attr_accessor chain: ::String
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class Stack
|
1010
|
+
attr_accessor stack_id: ::String
|
1011
|
+
attr_accessor name: ::String
|
1012
|
+
attr_accessor arn: ::String
|
1013
|
+
attr_accessor region: ::String
|
1014
|
+
attr_accessor vpc_id: ::String
|
1015
|
+
attr_accessor attributes: ::Hash[("Color"), ::String]
|
1016
|
+
attr_accessor service_role_arn: ::String
|
1017
|
+
attr_accessor default_instance_profile_arn: ::String
|
1018
|
+
attr_accessor default_os: ::String
|
1019
|
+
attr_accessor hostname_theme: ::String
|
1020
|
+
attr_accessor default_availability_zone: ::String
|
1021
|
+
attr_accessor default_subnet_id: ::String
|
1022
|
+
attr_accessor custom_json: ::String
|
1023
|
+
attr_accessor configuration_manager: Types::StackConfigurationManager
|
1024
|
+
attr_accessor chef_configuration: Types::ChefConfiguration
|
1025
|
+
attr_accessor use_custom_cookbooks: bool
|
1026
|
+
attr_accessor use_opsworks_security_groups: bool
|
1027
|
+
attr_accessor custom_cookbooks_source: Types::Source
|
1028
|
+
attr_accessor default_ssh_key_name: ::String
|
1029
|
+
attr_accessor created_at: ::String
|
1030
|
+
attr_accessor default_root_device_type: ("ebs" | "instance-store")
|
1031
|
+
attr_accessor agent_version: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class StackConfigurationManager
|
1036
|
+
attr_accessor name: ::String
|
1037
|
+
attr_accessor version: ::String
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class StackSummary
|
1042
|
+
attr_accessor stack_id: ::String
|
1043
|
+
attr_accessor name: ::String
|
1044
|
+
attr_accessor arn: ::String
|
1045
|
+
attr_accessor layers_count: ::Integer
|
1046
|
+
attr_accessor apps_count: ::Integer
|
1047
|
+
attr_accessor instances_count: Types::InstancesCount
|
1048
|
+
SENSITIVE: []
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class StartInstanceRequest
|
1052
|
+
attr_accessor instance_id: ::String
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class StartStackRequest
|
1057
|
+
attr_accessor stack_id: ::String
|
1058
|
+
SENSITIVE: []
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
class StopInstanceRequest
|
1062
|
+
attr_accessor instance_id: ::String
|
1063
|
+
attr_accessor force: bool
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class StopStackRequest
|
1068
|
+
attr_accessor stack_id: ::String
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class TagResourceRequest
|
1073
|
+
attr_accessor resource_arn: ::String
|
1074
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class TemporaryCredential
|
1079
|
+
attr_accessor username: ::String
|
1080
|
+
attr_accessor password: ::String
|
1081
|
+
attr_accessor valid_for_in_minutes: ::Integer
|
1082
|
+
attr_accessor instance_id: ::String
|
1083
|
+
SENSITIVE: []
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class TimeBasedAutoScalingConfiguration
|
1087
|
+
attr_accessor instance_id: ::String
|
1088
|
+
attr_accessor auto_scaling_schedule: Types::WeeklyAutoScalingSchedule
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class UnassignInstanceRequest
|
1093
|
+
attr_accessor instance_id: ::String
|
1094
|
+
SENSITIVE: []
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class UnassignVolumeRequest
|
1098
|
+
attr_accessor volume_id: ::String
|
1099
|
+
SENSITIVE: []
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class UntagResourceRequest
|
1103
|
+
attr_accessor resource_arn: ::String
|
1104
|
+
attr_accessor tag_keys: ::Array[::String]
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class UpdateAppRequest
|
1109
|
+
attr_accessor app_id: ::String
|
1110
|
+
attr_accessor name: ::String
|
1111
|
+
attr_accessor description: ::String
|
1112
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
1113
|
+
attr_accessor type: ("aws-flow-ruby" | "java" | "rails" | "php" | "nodejs" | "static" | "other")
|
1114
|
+
attr_accessor app_source: Types::Source
|
1115
|
+
attr_accessor domains: ::Array[::String]
|
1116
|
+
attr_accessor enable_ssl: bool
|
1117
|
+
attr_accessor ssl_configuration: Types::SslConfiguration
|
1118
|
+
attr_accessor attributes: ::Hash[("DocumentRoot" | "RailsEnv" | "AutoBundleOnDeploy" | "AwsFlowRubySettings"), ::String]
|
1119
|
+
attr_accessor environment: ::Array[Types::EnvironmentVariable]
|
1120
|
+
SENSITIVE: []
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
class UpdateElasticIpRequest
|
1124
|
+
attr_accessor elastic_ip: ::String
|
1125
|
+
attr_accessor name: ::String
|
1126
|
+
SENSITIVE: []
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
class UpdateInstanceRequest
|
1130
|
+
attr_accessor instance_id: ::String
|
1131
|
+
attr_accessor layer_ids: ::Array[::String]
|
1132
|
+
attr_accessor instance_type: ::String
|
1133
|
+
attr_accessor auto_scaling_type: ("load" | "timer")
|
1134
|
+
attr_accessor hostname: ::String
|
1135
|
+
attr_accessor os: ::String
|
1136
|
+
attr_accessor ami_id: ::String
|
1137
|
+
attr_accessor ssh_key_name: ::String
|
1138
|
+
attr_accessor architecture: ("x86_64" | "i386")
|
1139
|
+
attr_accessor install_updates_on_boot: bool
|
1140
|
+
attr_accessor ebs_optimized: bool
|
1141
|
+
attr_accessor agent_version: ::String
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class UpdateLayerRequest
|
1146
|
+
attr_accessor layer_id: ::String
|
1147
|
+
attr_accessor name: ::String
|
1148
|
+
attr_accessor shortname: ::String
|
1149
|
+
attr_accessor attributes: ::Hash[("EcsClusterArn" | "EnableHaproxyStats" | "HaproxyStatsUrl" | "HaproxyStatsUser" | "HaproxyStatsPassword" | "HaproxyHealthCheckUrl" | "HaproxyHealthCheckMethod" | "MysqlRootPassword" | "MysqlRootPasswordUbiquitous" | "GangliaUrl" | "GangliaUser" | "GangliaPassword" | "MemcachedMemory" | "NodejsVersion" | "RubyVersion" | "RubygemsVersion" | "ManageBundler" | "BundlerVersion" | "RailsStack" | "PassengerVersion" | "Jvm" | "JvmVersion" | "JvmOptions" | "JavaAppServer" | "JavaAppServerVersion"), ::String]
|
1150
|
+
attr_accessor cloud_watch_logs_configuration: Types::CloudWatchLogsConfiguration
|
1151
|
+
attr_accessor custom_instance_profile_arn: ::String
|
1152
|
+
attr_accessor custom_json: ::String
|
1153
|
+
attr_accessor custom_security_group_ids: ::Array[::String]
|
1154
|
+
attr_accessor packages: ::Array[::String]
|
1155
|
+
attr_accessor volume_configurations: ::Array[Types::VolumeConfiguration]
|
1156
|
+
attr_accessor enable_auto_healing: bool
|
1157
|
+
attr_accessor auto_assign_elastic_ips: bool
|
1158
|
+
attr_accessor auto_assign_public_ips: bool
|
1159
|
+
attr_accessor custom_recipes: Types::Recipes
|
1160
|
+
attr_accessor install_updates_on_boot: bool
|
1161
|
+
attr_accessor use_ebs_optimized_instances: bool
|
1162
|
+
attr_accessor lifecycle_event_configuration: Types::LifecycleEventConfiguration
|
1163
|
+
SENSITIVE: []
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class UpdateMyUserProfileRequest
|
1167
|
+
attr_accessor ssh_public_key: ::String
|
1168
|
+
SENSITIVE: []
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class UpdateRdsDbInstanceRequest
|
1172
|
+
attr_accessor rds_db_instance_arn: ::String
|
1173
|
+
attr_accessor db_user: ::String
|
1174
|
+
attr_accessor db_password: ::String
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class UpdateStackRequest
|
1179
|
+
attr_accessor stack_id: ::String
|
1180
|
+
attr_accessor name: ::String
|
1181
|
+
attr_accessor attributes: ::Hash[("Color"), ::String]
|
1182
|
+
attr_accessor service_role_arn: ::String
|
1183
|
+
attr_accessor default_instance_profile_arn: ::String
|
1184
|
+
attr_accessor default_os: ::String
|
1185
|
+
attr_accessor hostname_theme: ::String
|
1186
|
+
attr_accessor default_availability_zone: ::String
|
1187
|
+
attr_accessor default_subnet_id: ::String
|
1188
|
+
attr_accessor custom_json: ::String
|
1189
|
+
attr_accessor configuration_manager: Types::StackConfigurationManager
|
1190
|
+
attr_accessor chef_configuration: Types::ChefConfiguration
|
1191
|
+
attr_accessor use_custom_cookbooks: bool
|
1192
|
+
attr_accessor custom_cookbooks_source: Types::Source
|
1193
|
+
attr_accessor default_ssh_key_name: ::String
|
1194
|
+
attr_accessor default_root_device_type: ("ebs" | "instance-store")
|
1195
|
+
attr_accessor use_opsworks_security_groups: bool
|
1196
|
+
attr_accessor agent_version: ::String
|
1197
|
+
SENSITIVE: []
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class UpdateUserProfileRequest
|
1201
|
+
attr_accessor iam_user_arn: ::String
|
1202
|
+
attr_accessor ssh_username: ::String
|
1203
|
+
attr_accessor ssh_public_key: ::String
|
1204
|
+
attr_accessor allow_self_management: bool
|
1205
|
+
SENSITIVE: []
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class UpdateVolumeRequest
|
1209
|
+
attr_accessor volume_id: ::String
|
1210
|
+
attr_accessor name: ::String
|
1211
|
+
attr_accessor mount_point: ::String
|
1212
|
+
SENSITIVE: []
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class UserProfile
|
1216
|
+
attr_accessor iam_user_arn: ::String
|
1217
|
+
attr_accessor name: ::String
|
1218
|
+
attr_accessor ssh_username: ::String
|
1219
|
+
attr_accessor ssh_public_key: ::String
|
1220
|
+
attr_accessor allow_self_management: bool
|
1221
|
+
SENSITIVE: []
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class ValidationException
|
1225
|
+
attr_accessor message: ::String
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
class Volume
|
1230
|
+
attr_accessor volume_id: ::String
|
1231
|
+
attr_accessor ec2_volume_id: ::String
|
1232
|
+
attr_accessor name: ::String
|
1233
|
+
attr_accessor raid_array_id: ::String
|
1234
|
+
attr_accessor instance_id: ::String
|
1235
|
+
attr_accessor status: ::String
|
1236
|
+
attr_accessor size: ::Integer
|
1237
|
+
attr_accessor device: ::String
|
1238
|
+
attr_accessor mount_point: ::String
|
1239
|
+
attr_accessor region: ::String
|
1240
|
+
attr_accessor availability_zone: ::String
|
1241
|
+
attr_accessor volume_type: ::String
|
1242
|
+
attr_accessor iops: ::Integer
|
1243
|
+
attr_accessor encrypted: bool
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class VolumeConfiguration
|
1248
|
+
attr_accessor mount_point: ::String
|
1249
|
+
attr_accessor raid_level: ::Integer
|
1250
|
+
attr_accessor number_of_disks: ::Integer
|
1251
|
+
attr_accessor size: ::Integer
|
1252
|
+
attr_accessor volume_type: ::String
|
1253
|
+
attr_accessor iops: ::Integer
|
1254
|
+
attr_accessor encrypted: bool
|
1255
|
+
SENSITIVE: []
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class WeeklyAutoScalingSchedule
|
1259
|
+
attr_accessor monday: ::Hash[::String, ::String]
|
1260
|
+
attr_accessor tuesday: ::Hash[::String, ::String]
|
1261
|
+
attr_accessor wednesday: ::Hash[::String, ::String]
|
1262
|
+
attr_accessor thursday: ::Hash[::String, ::String]
|
1263
|
+
attr_accessor friday: ::Hash[::String, ::String]
|
1264
|
+
attr_accessor saturday: ::Hash[::String, ::String]
|
1265
|
+
attr_accessor sunday: ::Hash[::String, ::String]
|
1266
|
+
SENSITIVE: []
|
1267
|
+
end
|
1268
|
+
end
|
1269
|
+
end
|