aws-sdk-opsworks 1.17.0 → 1.18.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/lib/aws-sdk-opsworks.rb +1 -1
- data/lib/aws-sdk-opsworks/client.rb +230 -224
- data/lib/aws-sdk-opsworks/layer.rb +12 -12
- data/lib/aws-sdk-opsworks/resource.rb +23 -23
- data/lib/aws-sdk-opsworks/stack.rb +16 -16
- data/lib/aws-sdk-opsworks/types.rb +183 -178
- metadata +2 -2
@@ -91,7 +91,7 @@ module Aws::OpsWorks
|
|
91
91
|
#
|
92
92
|
#
|
93
93
|
#
|
94
|
-
# [1]:
|
94
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
95
95
|
# @return [String]
|
96
96
|
def custom_instance_profile_arn
|
97
97
|
data[:custom_instance_profile_arn]
|
@@ -141,8 +141,8 @@ module Aws::OpsWorks
|
|
141
141
|
#
|
142
142
|
#
|
143
143
|
#
|
144
|
-
# [1]:
|
145
|
-
# [2]:
|
144
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
145
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
146
146
|
# @return [Boolean]
|
147
147
|
def auto_assign_elastic_ips
|
148
148
|
data[:auto_assign_elastic_ips]
|
@@ -154,7 +154,7 @@ module Aws::OpsWorks
|
|
154
154
|
#
|
155
155
|
#
|
156
156
|
#
|
157
|
-
# [1]:
|
157
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
158
158
|
# @return [Boolean]
|
159
159
|
def auto_assign_public_ips
|
160
160
|
data[:auto_assign_public_ips]
|
@@ -163,17 +163,17 @@ module Aws::OpsWorks
|
|
163
163
|
# AWS OpsWorks Stacks supports five lifecycle events: **setup**,
|
164
164
|
# **configuration**, **deploy**, **undeploy**, and **shutdown**. For
|
165
165
|
# each layer, AWS OpsWorks Stacks runs a set of standard recipes for
|
166
|
-
# each event.
|
167
|
-
#
|
168
|
-
#
|
169
|
-
#
|
170
|
-
#
|
166
|
+
# each event. You can also provide custom recipes for any or all layers
|
167
|
+
# and events. AWS OpsWorks Stacks runs custom event recipes after the
|
168
|
+
# standard recipes. `LayerCustomRecipes` specifies the custom recipes
|
169
|
+
# for a particular layer to be run in response to each of the five
|
170
|
+
# events.
|
171
171
|
#
|
172
172
|
# To specify a recipe, use the cookbook's directory name in the
|
173
173
|
# repository followed by two colons and the recipe name, which is the
|
174
|
-
# recipe's file name without the
|
175
|
-
# phpapp2::dbsetup specifies the dbsetup.rb recipe in the
|
176
|
-
# phpapp2 folder.
|
174
|
+
# recipe's file name without the `.rb` extension. For example:
|
175
|
+
# `phpapp2::dbsetup` specifies the `dbsetup.rb` recipe in the
|
176
|
+
# repository's `phpapp2` folder.
|
177
177
|
# @return [Types::Recipes]
|
178
178
|
def default_recipes
|
179
179
|
data[:default_recipes]
|
@@ -88,7 +88,7 @@ module Aws::OpsWorks
|
|
88
88
|
#
|
89
89
|
#
|
90
90
|
#
|
91
|
-
# [1]:
|
91
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
92
92
|
# @option options [String] :vpc_id
|
93
93
|
# The ID of the VPC that the stack is to be launched into. The VPC must
|
94
94
|
# be in the stack's region. All instances are launched into this VPC.
|
@@ -120,8 +120,8 @@ module Aws::OpsWorks
|
|
120
120
|
#
|
121
121
|
#
|
122
122
|
#
|
123
|
-
# [1]:
|
124
|
-
# [2]:
|
123
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-vpc.html
|
124
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
125
125
|
# @option options [Hash<String,String>] :attributes
|
126
126
|
# One or more user-defined key-value pairs to be added to the stack
|
127
127
|
# attributes.
|
@@ -134,7 +134,7 @@ module Aws::OpsWorks
|
|
134
134
|
#
|
135
135
|
#
|
136
136
|
#
|
137
|
-
# [1]:
|
137
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
138
138
|
# @option options [required, String] :default_instance_profile_arn
|
139
139
|
# The Amazon Resource Name (ARN) of an IAM profile that is the default
|
140
140
|
# profile for all of the stack's EC2 instances. For more information
|
@@ -142,16 +142,16 @@ module Aws::OpsWorks
|
|
142
142
|
#
|
143
143
|
#
|
144
144
|
#
|
145
|
-
# [1]:
|
145
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
146
146
|
# @option options [String] :default_os
|
147
147
|
# The stack's default operating system, which is installed on every
|
148
148
|
# instance unless you specify a different operating system when you
|
149
149
|
# create the instance. You can specify one of the following.
|
150
150
|
#
|
151
151
|
# * A supported Linux operating system: An Amazon Linux version, such as
|
152
|
-
# `Amazon Linux
|
153
|
-
#
|
154
|
-
# Linux 2015.03`.
|
152
|
+
# `Amazon Linux 2018.03`, `Amazon Linux 2017.09`, `Amazon Linux
|
153
|
+
# 2017.03`, `Amazon Linux 2016.09`, `Amazon Linux 2016.03`, `Amazon
|
154
|
+
# Linux 2015.09`, or `Amazon Linux 2015.03`.
|
155
155
|
#
|
156
156
|
# * A supported Ubuntu operating system, such as `Ubuntu 16.04 LTS`,
|
157
157
|
# `Ubuntu 14.04 LTS`, or `Ubuntu 12.04 LTS`.
|
@@ -176,8 +176,8 @@ module Aws::OpsWorks
|
|
176
176
|
#
|
177
177
|
#
|
178
178
|
#
|
179
|
-
# [1]:
|
180
|
-
# [2]:
|
179
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
180
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
|
181
181
|
# @option options [String] :hostname_theme
|
182
182
|
# The stack's host name theme, with spaces replaced by underscores. The
|
183
183
|
# theme is used to generate host names for the stack's instances. By
|
@@ -193,7 +193,7 @@ module Aws::OpsWorks
|
|
193
193
|
#
|
194
194
|
# * `Fruits`
|
195
195
|
#
|
196
|
-
# * `
|
196
|
+
# * `Greek_Deities_and_Titans`
|
197
197
|
#
|
198
198
|
# * `Legendary_creatures_from_Japan`
|
199
199
|
#
|
@@ -218,7 +218,7 @@ module Aws::OpsWorks
|
|
218
218
|
#
|
219
219
|
#
|
220
220
|
#
|
221
|
-
# [1]:
|
221
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
222
222
|
# @option options [String] :default_subnet_id
|
223
223
|
# The stack's default VPC subnet ID. This parameter is required if you
|
224
224
|
# specify a value for the `VpcId` parameter. All instances are launched
|
@@ -240,7 +240,7 @@ module Aws::OpsWorks
|
|
240
240
|
#
|
241
241
|
#
|
242
242
|
#
|
243
|
-
# [1]:
|
243
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
244
244
|
# @option options [Types::StackConfigurationManager] :configuration_manager
|
245
245
|
# The configuration manager. When you create a stack we recommend that
|
246
246
|
# you use the configuration manager to specify the Chef version: 12,
|
@@ -253,7 +253,7 @@ module Aws::OpsWorks
|
|
253
253
|
#
|
254
254
|
#
|
255
255
|
#
|
256
|
-
# [1]:
|
256
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
257
257
|
# @option options [Boolean] :use_custom_cookbooks
|
258
258
|
# Whether the stack uses custom cookbooks.
|
259
259
|
# @option options [Boolean] :use_opsworks_security_groups
|
@@ -282,16 +282,16 @@ module Aws::OpsWorks
|
|
282
282
|
#
|
283
283
|
#
|
284
284
|
#
|
285
|
-
# [1]:
|
285
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
286
286
|
# @option options [Types::Source] :custom_cookbooks_source
|
287
287
|
# Contains the information required to retrieve an app or cookbook from
|
288
|
-
# a repository. For more information, see [
|
289
|
-
#
|
288
|
+
# a repository. For more information, see [Adding Apps][1] or [Cookbooks
|
289
|
+
# and Recipes][2].
|
290
290
|
#
|
291
291
|
#
|
292
292
|
#
|
293
|
-
# [1]:
|
294
|
-
# [2]:
|
293
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
294
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
295
295
|
# @option options [String] :default_ssh_key_name
|
296
296
|
# A default Amazon EC2 key pair name. The default value is none. If you
|
297
297
|
# specify a key pair name, AWS OpsWorks installs the public key on the
|
@@ -303,9 +303,9 @@ module Aws::OpsWorks
|
|
303
303
|
#
|
304
304
|
#
|
305
305
|
#
|
306
|
-
# [1]:
|
307
|
-
# [2]:
|
308
|
-
# [3]:
|
306
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html
|
307
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html
|
308
|
+
# [3]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html
|
309
309
|
# @option options [String] :default_root_device_type
|
310
310
|
# The default root device type. This value is the default for all
|
311
311
|
# instances in the stack, but you can override it when you create an
|
@@ -314,7 +314,7 @@ module Aws::OpsWorks
|
|
314
314
|
#
|
315
315
|
#
|
316
316
|
#
|
317
|
-
# [1]:
|
317
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
318
318
|
# @option options [String] :agent_version
|
319
319
|
# The default AWS OpsWorks Stacks agent version. You have the following
|
320
320
|
# options:
|
@@ -53,7 +53,7 @@ module Aws::OpsWorks
|
|
53
53
|
#
|
54
54
|
#
|
55
55
|
#
|
56
|
-
# [1]:
|
56
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
57
57
|
# @return [String]
|
58
58
|
def region
|
59
59
|
data[:region]
|
@@ -83,7 +83,7 @@ module Aws::OpsWorks
|
|
83
83
|
#
|
84
84
|
#
|
85
85
|
#
|
86
|
-
# [1]:
|
86
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
87
87
|
# @return [String]
|
88
88
|
def default_instance_profile_arn
|
89
89
|
data[:default_instance_profile_arn]
|
@@ -106,7 +106,7 @@ module Aws::OpsWorks
|
|
106
106
|
#
|
107
107
|
#
|
108
108
|
#
|
109
|
-
# [1]:
|
109
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
110
110
|
# @return [String]
|
111
111
|
def default_availability_zone
|
112
112
|
data[:default_availability_zone]
|
@@ -132,7 +132,7 @@ module Aws::OpsWorks
|
|
132
132
|
#
|
133
133
|
#
|
134
134
|
#
|
135
|
-
# [1]:
|
135
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
136
136
|
# @return [String]
|
137
137
|
def custom_json
|
138
138
|
data[:custom_json]
|
@@ -150,7 +150,7 @@ module Aws::OpsWorks
|
|
150
150
|
#
|
151
151
|
#
|
152
152
|
#
|
153
|
-
# [1]:
|
153
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
154
154
|
# @return [Types::ChefConfiguration]
|
155
155
|
def chef_configuration
|
156
156
|
data[:chef_configuration]
|
@@ -170,13 +170,13 @@ module Aws::OpsWorks
|
|
170
170
|
end
|
171
171
|
|
172
172
|
# Contains the information required to retrieve an app or cookbook from
|
173
|
-
# a repository. For more information, see [
|
174
|
-
#
|
173
|
+
# a repository. For more information, see [Adding Apps][1] or [Cookbooks
|
174
|
+
# and Recipes][2].
|
175
175
|
#
|
176
176
|
#
|
177
177
|
#
|
178
|
-
# [1]:
|
179
|
-
# [2]:
|
178
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
179
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
180
180
|
# @return [Types::Source]
|
181
181
|
def custom_cookbooks_source
|
182
182
|
data[:custom_cookbooks_source]
|
@@ -201,7 +201,7 @@ module Aws::OpsWorks
|
|
201
201
|
#
|
202
202
|
#
|
203
203
|
#
|
204
|
-
# [1]:
|
204
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
205
205
|
# @return [String]
|
206
206
|
def default_root_device_type
|
207
207
|
data[:default_root_device_type]
|
@@ -427,7 +427,7 @@ module Aws::OpsWorks
|
|
427
427
|
#
|
428
428
|
#
|
429
429
|
#
|
430
|
-
# [1]:
|
430
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/layers.html
|
431
431
|
# @option options [Hash<String,String>] :attributes
|
432
432
|
# One or more user-defined key-value pairs to be added to the stack
|
433
433
|
# attributes.
|
@@ -443,7 +443,7 @@ module Aws::OpsWorks
|
|
443
443
|
#
|
444
444
|
#
|
445
445
|
#
|
446
|
-
# [1]:
|
446
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
447
447
|
# @option options [String] :custom_json
|
448
448
|
# A JSON-formatted string containing custom stack configuration and
|
449
449
|
# deployment attributes to be installed on the layer's instances. For
|
@@ -452,7 +452,7 @@ module Aws::OpsWorks
|
|
452
452
|
#
|
453
453
|
#
|
454
454
|
#
|
455
|
-
# [1]:
|
455
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-json-override.html
|
456
456
|
# @option options [Array<String>] :custom_security_group_ids
|
457
457
|
# An array containing the layer custom security group IDs.
|
458
458
|
# @option options [Array<String>] :packages
|
@@ -469,8 +469,8 @@ module Aws::OpsWorks
|
|
469
469
|
#
|
470
470
|
#
|
471
471
|
#
|
472
|
-
# [1]:
|
473
|
-
# [2]:
|
472
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
473
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
474
474
|
# @option options [Boolean] :auto_assign_public_ips
|
475
475
|
# For stacks that are running in a VPC, whether to automatically assign
|
476
476
|
# a public IP address to the layer's instances. For more information,
|
@@ -478,7 +478,7 @@ module Aws::OpsWorks
|
|
478
478
|
#
|
479
479
|
#
|
480
480
|
#
|
481
|
-
# [1]:
|
481
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
482
482
|
# @option options [Types::Recipes] :custom_recipes
|
483
483
|
# A `LayerCustomRecipes` object that specifies the layer custom recipes.
|
484
484
|
# @option options [Boolean] :install_updates_on_boot
|
@@ -90,16 +90,15 @@ module Aws::OpsWorks
|
|
90
90
|
# <note markdown="1"> There is no specific limit on the number of environment variables.
|
91
91
|
# However, the size of the associated data structure - which includes
|
92
92
|
# the variable names, values, and protected flag values - cannot
|
93
|
-
# exceed
|
94
|
-
#
|
95
|
-
#
|
96
|
-
# 10KB)" message.
|
93
|
+
# exceed 20 KB. This limit should accommodate most if not all use
|
94
|
+
# cases, but if you do exceed it, you will cause an exception (API)
|
95
|
+
# with an "Environment: is too large (maximum is 20 KB)" message.
|
97
96
|
#
|
98
97
|
# </note>
|
99
98
|
#
|
100
99
|
#
|
101
100
|
#
|
102
|
-
# [1]:
|
101
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html#workingapps-creating-environment
|
103
102
|
# @return [Array<Types::EnvironmentVariable>]
|
104
103
|
#
|
105
104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/App AWS API Documentation
|
@@ -293,7 +292,7 @@ module Aws::OpsWorks
|
|
293
292
|
#
|
294
293
|
#
|
295
294
|
#
|
296
|
-
# [1]:
|
295
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-servicerole.html
|
297
296
|
# @return [Array<String>]
|
298
297
|
#
|
299
298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/AutoScalingThresholds AWS API Documentation
|
@@ -314,7 +313,7 @@ module Aws::OpsWorks
|
|
314
313
|
#
|
315
314
|
#
|
316
315
|
#
|
317
|
-
# [1]:
|
316
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html
|
318
317
|
#
|
319
318
|
# @note When making an API call, you may pass BlockDeviceMapping
|
320
319
|
# data as a hash:
|
@@ -350,7 +349,7 @@ module Aws::OpsWorks
|
|
350
349
|
#
|
351
350
|
#
|
352
351
|
#
|
353
|
-
# [1]:
|
352
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_BlockDeviceMapping.html
|
354
353
|
# @return [String]
|
355
354
|
#
|
356
355
|
# @!attribute [rw] ebs
|
@@ -451,7 +450,7 @@ module Aws::OpsWorks
|
|
451
450
|
#
|
452
451
|
#
|
453
452
|
#
|
454
|
-
# [1]:
|
453
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
455
454
|
# @return [String]
|
456
455
|
#
|
457
456
|
# @!attribute [rw] vpc_id
|
@@ -485,8 +484,8 @@ module Aws::OpsWorks
|
|
485
484
|
#
|
486
485
|
#
|
487
486
|
#
|
488
|
-
# [1]:
|
489
|
-
# [2]:
|
487
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-vpc.html
|
488
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
490
489
|
# @return [String]
|
491
490
|
#
|
492
491
|
# @!attribute [rw] attributes
|
@@ -513,7 +512,7 @@ module Aws::OpsWorks
|
|
513
512
|
#
|
514
513
|
#
|
515
514
|
#
|
516
|
-
# [1]:
|
515
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
517
516
|
# @return [String]
|
518
517
|
#
|
519
518
|
# @!attribute [rw] default_instance_profile_arn
|
@@ -523,7 +522,7 @@ module Aws::OpsWorks
|
|
523
522
|
#
|
524
523
|
#
|
525
524
|
#
|
526
|
-
# [1]:
|
525
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
527
526
|
# @return [String]
|
528
527
|
#
|
529
528
|
# @!attribute [rw] default_os
|
@@ -531,9 +530,9 @@ module Aws::OpsWorks
|
|
531
530
|
# following.
|
532
531
|
#
|
533
532
|
# * A supported Linux operating system: An Amazon Linux version, such
|
534
|
-
# as `Amazon Linux
|
535
|
-
#
|
536
|
-
# `Amazon Linux 2015.03`.
|
533
|
+
# as `Amazon Linux 2018.03`, `Amazon Linux 2017.09`, `Amazon Linux
|
534
|
+
# 2017.03`, `Amazon Linux 2016.09`, `Amazon Linux 2016.03`, `Amazon
|
535
|
+
# Linux 2015.09`, or `Amazon Linux 2015.03`.
|
537
536
|
#
|
538
537
|
# * A supported Ubuntu operating system, such as `Ubuntu 16.04 LTS`,
|
539
538
|
# `Ubuntu 14.04 LTS`, or `Ubuntu 12.04 LTS`.
|
@@ -563,8 +562,8 @@ module Aws::OpsWorks
|
|
563
562
|
#
|
564
563
|
#
|
565
564
|
#
|
566
|
-
# [1]:
|
567
|
-
# [2]:
|
565
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
566
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
|
568
567
|
# @return [String]
|
569
568
|
#
|
570
569
|
# @!attribute [rw] hostname_theme
|
@@ -582,7 +581,7 @@ module Aws::OpsWorks
|
|
582
581
|
#
|
583
582
|
# * `Fruits`
|
584
583
|
#
|
585
|
-
# * `
|
584
|
+
# * `Greek_Deities_and_Titans`
|
586
585
|
#
|
587
586
|
# * `Legendary_creatures_from_Japan`
|
588
587
|
#
|
@@ -609,7 +608,7 @@ module Aws::OpsWorks
|
|
609
608
|
#
|
610
609
|
#
|
611
610
|
#
|
612
|
-
# [1]:
|
611
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
613
612
|
# @return [String]
|
614
613
|
#
|
615
614
|
# @!attribute [rw] default_subnet_id
|
@@ -634,7 +633,7 @@ module Aws::OpsWorks
|
|
634
633
|
#
|
635
634
|
#
|
636
635
|
#
|
637
|
-
# [1]:
|
636
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
638
637
|
# @return [String]
|
639
638
|
#
|
640
639
|
# @!attribute [rw] configuration_manager
|
@@ -651,7 +650,7 @@ module Aws::OpsWorks
|
|
651
650
|
#
|
652
651
|
#
|
653
652
|
#
|
654
|
-
# [1]:
|
653
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
655
654
|
# @return [Types::ChefConfiguration]
|
656
655
|
#
|
657
656
|
# @!attribute [rw] use_custom_cookbooks
|
@@ -686,18 +685,18 @@ module Aws::OpsWorks
|
|
686
685
|
#
|
687
686
|
#
|
688
687
|
#
|
689
|
-
# [1]:
|
688
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
690
689
|
# @return [Boolean]
|
691
690
|
#
|
692
691
|
# @!attribute [rw] custom_cookbooks_source
|
693
692
|
# Contains the information required to retrieve an app or cookbook
|
694
|
-
# from a repository. For more information, see [
|
695
|
-
# [
|
693
|
+
# from a repository. For more information, see [Adding Apps][1] or
|
694
|
+
# [Cookbooks and Recipes][2].
|
696
695
|
#
|
697
696
|
#
|
698
697
|
#
|
699
|
-
# [1]:
|
700
|
-
# [2]:
|
698
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
699
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
701
700
|
# @return [Types::Source]
|
702
701
|
#
|
703
702
|
# @!attribute [rw] default_ssh_key_name
|
@@ -711,9 +710,9 @@ module Aws::OpsWorks
|
|
711
710
|
#
|
712
711
|
#
|
713
712
|
#
|
714
|
-
# [1]:
|
715
|
-
# [2]:
|
716
|
-
# [3]:
|
713
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html
|
714
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html
|
715
|
+
# [3]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html
|
717
716
|
# @return [String]
|
718
717
|
#
|
719
718
|
# @!attribute [rw] clone_permissions
|
@@ -732,7 +731,7 @@ module Aws::OpsWorks
|
|
732
731
|
#
|
733
732
|
#
|
734
733
|
#
|
735
|
-
# [1]:
|
734
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
736
735
|
# @return [String]
|
737
736
|
#
|
738
737
|
# @!attribute [rw] agent_version
|
@@ -846,7 +845,7 @@ module Aws::OpsWorks
|
|
846
845
|
#
|
847
846
|
#
|
848
847
|
#
|
849
|
-
# [1]:
|
848
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AgentReference.html
|
850
849
|
#
|
851
850
|
# @note When making an API call, you may pass CloudWatchLogsLogStream
|
852
851
|
# data as a hash:
|
@@ -879,7 +878,7 @@ module Aws::OpsWorks
|
|
879
878
|
#
|
880
879
|
#
|
881
880
|
#
|
882
|
-
# [1]:
|
881
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AgentReference.html
|
883
882
|
# @return [String]
|
884
883
|
#
|
885
884
|
# @!attribute [rw] time_zone
|
@@ -1155,19 +1154,18 @@ module Aws::OpsWorks
|
|
1155
1154
|
# There is no specific limit on the number of environment variables.
|
1156
1155
|
# However, the size of the associated data structure - which includes
|
1157
1156
|
# the variables' names, values, and protected flag values - cannot
|
1158
|
-
# exceed
|
1159
|
-
#
|
1160
|
-
#
|
1157
|
+
# exceed 20 KB. This limit should accommodate most if not all use
|
1158
|
+
# cases. Exceeding it will cause an exception with the message,
|
1159
|
+
# "Environment: is too large (maximum is 20KB)."
|
1161
1160
|
#
|
1162
|
-
# <note markdown="1">
|
1163
|
-
#
|
1164
|
-
# stack's Chef version.
|
1161
|
+
# <note markdown="1"> If you have specified one or more environment variables, you cannot
|
1162
|
+
# modify the stack's Chef version.
|
1165
1163
|
#
|
1166
1164
|
# </note>
|
1167
1165
|
#
|
1168
1166
|
#
|
1169
1167
|
#
|
1170
|
-
# [1]:
|
1168
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html#workingapps-creating-environment
|
1171
1169
|
# @return [Array<Types::EnvironmentVariable>]
|
1172
1170
|
#
|
1173
1171
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/CreateAppRequest AWS API Documentation
|
@@ -1246,18 +1244,20 @@ module Aws::OpsWorks
|
|
1246
1244
|
# @return [String]
|
1247
1245
|
#
|
1248
1246
|
# @!attribute [rw] custom_json
|
1249
|
-
# A string that contains user-defined, custom JSON.
|
1250
|
-
# override
|
1251
|
-
# The string should be in the following format:
|
1247
|
+
# A string that contains user-defined, custom JSON. You can use this
|
1248
|
+
# parameter to override some corresponding default stack configuration
|
1249
|
+
# JSON values. The string should be in the following format:
|
1252
1250
|
#
|
1253
1251
|
# `"\{"key1": "value1", "key2": "value2",...\}"`
|
1254
1252
|
#
|
1255
1253
|
# For more information about custom JSON, see [Use Custom JSON to
|
1256
|
-
# Modify the Stack Configuration Attributes][1]
|
1254
|
+
# Modify the Stack Configuration Attributes][1] and [Overriding
|
1255
|
+
# Attributes With Custom JSON][2].
|
1257
1256
|
#
|
1258
1257
|
#
|
1259
1258
|
#
|
1260
|
-
# [1]:
|
1259
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
1260
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-json-override.html
|
1261
1261
|
# @return [String]
|
1262
1262
|
#
|
1263
1263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/CreateDeploymentRequest AWS API Documentation
|
@@ -1343,7 +1343,7 @@ module Aws::OpsWorks
|
|
1343
1343
|
#
|
1344
1344
|
#
|
1345
1345
|
#
|
1346
|
-
# [1]:
|
1346
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
|
1347
1347
|
# @return [String]
|
1348
1348
|
#
|
1349
1349
|
# @!attribute [rw] auto_scaling_type
|
@@ -1360,9 +1360,9 @@ module Aws::OpsWorks
|
|
1360
1360
|
# following.
|
1361
1361
|
#
|
1362
1362
|
# * A supported Linux operating system: An Amazon Linux version, such
|
1363
|
-
# as `Amazon Linux
|
1364
|
-
#
|
1365
|
-
# `Amazon Linux 2015.03`.
|
1363
|
+
# as `Amazon Linux 2018.03`, `Amazon Linux 2017.09`, `Amazon Linux
|
1364
|
+
# 2017.03`, `Amazon Linux 2016.09`, `Amazon Linux 2016.03`, `Amazon
|
1365
|
+
# Linux 2015.09`, or `Amazon Linux 2015.03`.
|
1366
1366
|
#
|
1367
1367
|
# * A supported Ubuntu operating system, such as `Ubuntu 16.04 LTS`,
|
1368
1368
|
# `Ubuntu 14.04 LTS`, or `Ubuntu 12.04 LTS`.
|
@@ -1392,8 +1392,8 @@ module Aws::OpsWorks
|
|
1392
1392
|
#
|
1393
1393
|
#
|
1394
1394
|
#
|
1395
|
-
# [1]:
|
1396
|
-
# [2]:
|
1395
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
|
1396
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
1397
1397
|
# @return [String]
|
1398
1398
|
#
|
1399
1399
|
# @!attribute [rw] ami_id
|
@@ -1407,7 +1407,7 @@ module Aws::OpsWorks
|
|
1407
1407
|
#
|
1408
1408
|
#
|
1409
1409
|
#
|
1410
|
-
# [1]:
|
1410
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
1411
1411
|
# @return [String]
|
1412
1412
|
#
|
1413
1413
|
# @!attribute [rw] ssh_key_name
|
@@ -1420,7 +1420,7 @@ module Aws::OpsWorks
|
|
1420
1420
|
#
|
1421
1421
|
#
|
1422
1422
|
#
|
1423
|
-
# [1]:
|
1423
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
1424
1424
|
# @return [String]
|
1425
1425
|
#
|
1426
1426
|
# @!attribute [rw] virtualization_type
|
@@ -1442,7 +1442,7 @@ module Aws::OpsWorks
|
|
1442
1442
|
#
|
1443
1443
|
#
|
1444
1444
|
#
|
1445
|
-
# [1]:
|
1445
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
|
1446
1446
|
# @return [String]
|
1447
1447
|
#
|
1448
1448
|
# @!attribute [rw] root_device_type
|
@@ -1451,7 +1451,7 @@ module Aws::OpsWorks
|
|
1451
1451
|
#
|
1452
1452
|
#
|
1453
1453
|
#
|
1454
|
-
# [1]:
|
1454
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
1455
1455
|
# @return [String]
|
1456
1456
|
#
|
1457
1457
|
# @!attribute [rw] block_device_mappings
|
@@ -1462,7 +1462,7 @@ module Aws::OpsWorks
|
|
1462
1462
|
#
|
1463
1463
|
#
|
1464
1464
|
#
|
1465
|
-
# [1]:
|
1465
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
|
1466
1466
|
# @return [Array<Types::BlockDeviceMapping>]
|
1467
1467
|
#
|
1468
1468
|
# @!attribute [rw] install_updates_on_boot
|
@@ -1516,7 +1516,7 @@ module Aws::OpsWorks
|
|
1516
1516
|
#
|
1517
1517
|
#
|
1518
1518
|
# [1]: http://aws.amazon.com/ec2/dedicated-hosts/
|
1519
|
-
# [2]:
|
1519
|
+
# [2]: https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/dedicated-instance.html
|
1520
1520
|
# [3]: http://aws.amazon.com/ec2/purchasing-options/dedicated-instances/
|
1521
1521
|
# @return [String]
|
1522
1522
|
#
|
@@ -1648,7 +1648,7 @@ module Aws::OpsWorks
|
|
1648
1648
|
#
|
1649
1649
|
#
|
1650
1650
|
#
|
1651
|
-
# [1]:
|
1651
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/layers.html
|
1652
1652
|
# @return [String]
|
1653
1653
|
#
|
1654
1654
|
# @!attribute [rw] attributes
|
@@ -1670,7 +1670,7 @@ module Aws::OpsWorks
|
|
1670
1670
|
#
|
1671
1671
|
#
|
1672
1672
|
#
|
1673
|
-
# [1]:
|
1673
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1674
1674
|
# @return [String]
|
1675
1675
|
#
|
1676
1676
|
# @!attribute [rw] custom_json
|
@@ -1681,7 +1681,7 @@ module Aws::OpsWorks
|
|
1681
1681
|
#
|
1682
1682
|
#
|
1683
1683
|
#
|
1684
|
-
# [1]:
|
1684
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-json-override.html
|
1685
1685
|
# @return [String]
|
1686
1686
|
#
|
1687
1687
|
# @!attribute [rw] custom_security_group_ids
|
@@ -1708,8 +1708,8 @@ module Aws::OpsWorks
|
|
1708
1708
|
#
|
1709
1709
|
#
|
1710
1710
|
#
|
1711
|
-
# [1]:
|
1712
|
-
# [2]:
|
1711
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
1712
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
1713
1713
|
# @return [Boolean]
|
1714
1714
|
#
|
1715
1715
|
# @!attribute [rw] auto_assign_public_ips
|
@@ -1719,7 +1719,7 @@ module Aws::OpsWorks
|
|
1719
1719
|
#
|
1720
1720
|
#
|
1721
1721
|
#
|
1722
|
-
# [1]:
|
1722
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
1723
1723
|
# @return [Boolean]
|
1724
1724
|
#
|
1725
1725
|
# @!attribute [rw] custom_recipes
|
@@ -1859,7 +1859,7 @@ module Aws::OpsWorks
|
|
1859
1859
|
#
|
1860
1860
|
#
|
1861
1861
|
#
|
1862
|
-
# [1]:
|
1862
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
1863
1863
|
# @return [String]
|
1864
1864
|
#
|
1865
1865
|
# @!attribute [rw] vpc_id
|
@@ -1894,8 +1894,8 @@ module Aws::OpsWorks
|
|
1894
1894
|
#
|
1895
1895
|
#
|
1896
1896
|
#
|
1897
|
-
# [1]:
|
1898
|
-
# [2]:
|
1897
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-vpc.html
|
1898
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
1899
1899
|
# @return [String]
|
1900
1900
|
#
|
1901
1901
|
# @!attribute [rw] attributes
|
@@ -1912,7 +1912,7 @@ module Aws::OpsWorks
|
|
1912
1912
|
#
|
1913
1913
|
#
|
1914
1914
|
#
|
1915
|
-
# [1]:
|
1915
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1916
1916
|
# @return [String]
|
1917
1917
|
#
|
1918
1918
|
# @!attribute [rw] default_instance_profile_arn
|
@@ -1922,7 +1922,7 @@ module Aws::OpsWorks
|
|
1922
1922
|
#
|
1923
1923
|
#
|
1924
1924
|
#
|
1925
|
-
# [1]:
|
1925
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
1926
1926
|
# @return [String]
|
1927
1927
|
#
|
1928
1928
|
# @!attribute [rw] default_os
|
@@ -1931,9 +1931,9 @@ module Aws::OpsWorks
|
|
1931
1931
|
# create the instance. You can specify one of the following.
|
1932
1932
|
#
|
1933
1933
|
# * A supported Linux operating system: An Amazon Linux version, such
|
1934
|
-
# as `Amazon Linux
|
1935
|
-
#
|
1936
|
-
# `Amazon Linux 2015.03`.
|
1934
|
+
# as `Amazon Linux 2018.03`, `Amazon Linux 2017.09`, `Amazon Linux
|
1935
|
+
# 2017.03`, `Amazon Linux 2016.09`, `Amazon Linux 2016.03`, `Amazon
|
1936
|
+
# Linux 2015.09`, or `Amazon Linux 2015.03`.
|
1937
1937
|
#
|
1938
1938
|
# * A supported Ubuntu operating system, such as `Ubuntu 16.04 LTS`,
|
1939
1939
|
# `Ubuntu 14.04 LTS`, or `Ubuntu 12.04 LTS`.
|
@@ -1958,8 +1958,8 @@ module Aws::OpsWorks
|
|
1958
1958
|
#
|
1959
1959
|
#
|
1960
1960
|
#
|
1961
|
-
# [1]:
|
1962
|
-
# [2]:
|
1961
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
1962
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
|
1963
1963
|
# @return [String]
|
1964
1964
|
#
|
1965
1965
|
# @!attribute [rw] hostname_theme
|
@@ -1977,7 +1977,7 @@ module Aws::OpsWorks
|
|
1977
1977
|
#
|
1978
1978
|
# * `Fruits`
|
1979
1979
|
#
|
1980
|
-
# * `
|
1980
|
+
# * `Greek_Deities_and_Titans`
|
1981
1981
|
#
|
1982
1982
|
# * `Legendary_creatures_from_Japan`
|
1983
1983
|
#
|
@@ -2004,7 +2004,7 @@ module Aws::OpsWorks
|
|
2004
2004
|
#
|
2005
2005
|
#
|
2006
2006
|
#
|
2007
|
-
# [1]:
|
2007
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
2008
2008
|
# @return [String]
|
2009
2009
|
#
|
2010
2010
|
# @!attribute [rw] default_subnet_id
|
@@ -2030,7 +2030,7 @@ module Aws::OpsWorks
|
|
2030
2030
|
#
|
2031
2031
|
#
|
2032
2032
|
#
|
2033
|
-
# [1]:
|
2033
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
2034
2034
|
# @return [String]
|
2035
2035
|
#
|
2036
2036
|
# @!attribute [rw] configuration_manager
|
@@ -2047,7 +2047,7 @@ module Aws::OpsWorks
|
|
2047
2047
|
#
|
2048
2048
|
#
|
2049
2049
|
#
|
2050
|
-
# [1]:
|
2050
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
2051
2051
|
# @return [Types::ChefConfiguration]
|
2052
2052
|
#
|
2053
2053
|
# @!attribute [rw] use_custom_cookbooks
|
@@ -2081,18 +2081,18 @@ module Aws::OpsWorks
|
|
2081
2081
|
#
|
2082
2082
|
#
|
2083
2083
|
#
|
2084
|
-
# [1]:
|
2084
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
2085
2085
|
# @return [Boolean]
|
2086
2086
|
#
|
2087
2087
|
# @!attribute [rw] custom_cookbooks_source
|
2088
2088
|
# Contains the information required to retrieve an app or cookbook
|
2089
|
-
# from a repository. For more information, see [
|
2090
|
-
# [
|
2089
|
+
# from a repository. For more information, see [Adding Apps][1] or
|
2090
|
+
# [Cookbooks and Recipes][2].
|
2091
2091
|
#
|
2092
2092
|
#
|
2093
2093
|
#
|
2094
|
-
# [1]:
|
2095
|
-
# [2]:
|
2094
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
2095
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
2096
2096
|
# @return [Types::Source]
|
2097
2097
|
#
|
2098
2098
|
# @!attribute [rw] default_ssh_key_name
|
@@ -2106,9 +2106,9 @@ module Aws::OpsWorks
|
|
2106
2106
|
#
|
2107
2107
|
#
|
2108
2108
|
#
|
2109
|
-
# [1]:
|
2110
|
-
# [2]:
|
2111
|
-
# [3]:
|
2109
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html
|
2110
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html
|
2111
|
+
# [3]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html
|
2112
2112
|
# @return [String]
|
2113
2113
|
#
|
2114
2114
|
# @!attribute [rw] default_root_device_type
|
@@ -2119,7 +2119,7 @@ module Aws::OpsWorks
|
|
2119
2119
|
#
|
2120
2120
|
#
|
2121
2121
|
#
|
2122
|
-
# [1]:
|
2122
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
2123
2123
|
# @return [String]
|
2124
2124
|
#
|
2125
2125
|
# @!attribute [rw] agent_version
|
@@ -2220,7 +2220,7 @@ module Aws::OpsWorks
|
|
2220
2220
|
#
|
2221
2221
|
#
|
2222
2222
|
#
|
2223
|
-
# [1]:
|
2223
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html
|
2224
2224
|
# @return [Boolean]
|
2225
2225
|
#
|
2226
2226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/CreateUserProfileRequest AWS API Documentation
|
@@ -2442,7 +2442,7 @@ module Aws::OpsWorks
|
|
2442
2442
|
#
|
2443
2443
|
#
|
2444
2444
|
#
|
2445
|
-
# [1]:
|
2445
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
2446
2446
|
# @return [String]
|
2447
2447
|
#
|
2448
2448
|
# @!attribute [rw] instance_ids
|
@@ -3147,7 +3147,7 @@ module Aws::OpsWorks
|
|
3147
3147
|
#
|
3148
3148
|
#
|
3149
3149
|
#
|
3150
|
-
# [1]:
|
3150
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
3151
3151
|
# @return [String]
|
3152
3152
|
#
|
3153
3153
|
# @!attribute [rw] stack_id
|
@@ -3593,7 +3593,7 @@ module Aws::OpsWorks
|
|
3593
3593
|
#
|
3594
3594
|
#
|
3595
3595
|
#
|
3596
|
-
# [1]:
|
3596
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html
|
3597
3597
|
#
|
3598
3598
|
# @note When making an API call, you may pass EbsBlockDevice
|
3599
3599
|
# data as a hash:
|
@@ -3616,7 +3616,7 @@ module Aws::OpsWorks
|
|
3616
3616
|
#
|
3617
3617
|
#
|
3618
3618
|
#
|
3619
|
-
# [1]:
|
3619
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html
|
3620
3620
|
# @return [Integer]
|
3621
3621
|
#
|
3622
3622
|
# @!attribute [rw] volume_size
|
@@ -3625,7 +3625,7 @@ module Aws::OpsWorks
|
|
3625
3625
|
#
|
3626
3626
|
#
|
3627
3627
|
#
|
3628
|
-
# [1]:
|
3628
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_EbsBlockDevice.html
|
3629
3629
|
# @return [Integer]
|
3630
3630
|
#
|
3631
3631
|
# @!attribute [rw] volume_type
|
@@ -3704,7 +3704,7 @@ module Aws::OpsWorks
|
|
3704
3704
|
#
|
3705
3705
|
#
|
3706
3706
|
#
|
3707
|
-
# [1]:
|
3707
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
3708
3708
|
# @return [String]
|
3709
3709
|
#
|
3710
3710
|
# @!attribute [rw] instance_id
|
@@ -3909,7 +3909,7 @@ module Aws::OpsWorks
|
|
3909
3909
|
#
|
3910
3910
|
#
|
3911
3911
|
#
|
3912
|
-
# [1]:
|
3912
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
3913
3913
|
# @return [String]
|
3914
3914
|
#
|
3915
3915
|
# @!attribute [rw] architecture
|
@@ -3930,7 +3930,7 @@ module Aws::OpsWorks
|
|
3930
3930
|
#
|
3931
3931
|
#
|
3932
3932
|
#
|
3933
|
-
# [1]:
|
3933
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
3934
3934
|
# @return [String]
|
3935
3935
|
#
|
3936
3936
|
# @!attribute [rw] block_device_mappings
|
@@ -3963,7 +3963,7 @@ module Aws::OpsWorks
|
|
3963
3963
|
#
|
3964
3964
|
#
|
3965
3965
|
#
|
3966
|
-
# [1]:
|
3966
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
3967
3967
|
# @return [String]
|
3968
3968
|
#
|
3969
3969
|
# @!attribute [rw] hostname
|
@@ -3999,7 +3999,7 @@ module Aws::OpsWorks
|
|
3999
3999
|
#
|
4000
4000
|
#
|
4001
4001
|
#
|
4002
|
-
# [1]:
|
4002
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4003
4003
|
# @return [String]
|
4004
4004
|
#
|
4005
4005
|
# @!attribute [rw] instance_type
|
@@ -4057,7 +4057,7 @@ module Aws::OpsWorks
|
|
4057
4057
|
#
|
4058
4058
|
#
|
4059
4059
|
#
|
4060
|
-
# [1]:
|
4060
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
4061
4061
|
# @return [String]
|
4062
4062
|
#
|
4063
4063
|
# @!attribute [rw] root_device_volume_id
|
@@ -4184,7 +4184,7 @@ module Aws::OpsWorks
|
|
4184
4184
|
#
|
4185
4185
|
#
|
4186
4186
|
#
|
4187
|
-
# [1]:
|
4187
|
+
# [1]: https://docs.aws.amazon.com/sdkfornet/latest/apidocs/Index.html
|
4188
4188
|
#
|
4189
4189
|
# @note When making an API call, you may pass InstanceIdentity
|
4190
4190
|
# data as a hash:
|
@@ -4367,7 +4367,7 @@ module Aws::OpsWorks
|
|
4367
4367
|
#
|
4368
4368
|
#
|
4369
4369
|
#
|
4370
|
-
# [1]:
|
4370
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4371
4371
|
# @return [String]
|
4372
4372
|
#
|
4373
4373
|
# @!attribute [rw] custom_json
|
@@ -4403,8 +4403,8 @@ module Aws::OpsWorks
|
|
4403
4403
|
#
|
4404
4404
|
#
|
4405
4405
|
#
|
4406
|
-
# [1]:
|
4407
|
-
# [2]:
|
4406
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
4407
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
4408
4408
|
# @return [Boolean]
|
4409
4409
|
#
|
4410
4410
|
# @!attribute [rw] auto_assign_public_ips
|
@@ -4414,24 +4414,24 @@ module Aws::OpsWorks
|
|
4414
4414
|
#
|
4415
4415
|
#
|
4416
4416
|
#
|
4417
|
-
# [1]:
|
4417
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
4418
4418
|
# @return [Boolean]
|
4419
4419
|
#
|
4420
4420
|
# @!attribute [rw] default_recipes
|
4421
4421
|
# AWS OpsWorks Stacks supports five lifecycle events: **setup**,
|
4422
4422
|
# **configuration**, **deploy**, **undeploy**, and **shutdown**. For
|
4423
4423
|
# each layer, AWS OpsWorks Stacks runs a set of standard recipes for
|
4424
|
-
# each event.
|
4425
|
-
#
|
4424
|
+
# each event. You can also provide custom recipes for any or all
|
4425
|
+
# layers and events. AWS OpsWorks Stacks runs custom event recipes
|
4426
4426
|
# after the standard recipes. `LayerCustomRecipes` specifies the
|
4427
4427
|
# custom recipes for a particular layer to be run in response to each
|
4428
4428
|
# of the five events.
|
4429
4429
|
#
|
4430
4430
|
# To specify a recipe, use the cookbook's directory name in the
|
4431
4431
|
# repository followed by two colons and the recipe name, which is the
|
4432
|
-
# recipe's file name without the
|
4433
|
-
# phpapp2::dbsetup specifies the dbsetup.rb recipe in the
|
4434
|
-
# repository's phpapp2 folder.
|
4432
|
+
# recipe's file name without the `.rb` extension. For example:
|
4433
|
+
# `phpapp2::dbsetup` specifies the `dbsetup.rb` recipe in the
|
4434
|
+
# repository's `phpapp2` folder.
|
4435
4435
|
# @return [Types::Recipes]
|
4436
4436
|
#
|
4437
4437
|
# @!attribute [rw] custom_recipes
|
@@ -4609,12 +4609,12 @@ module Aws::OpsWorks
|
|
4609
4609
|
# Describes supported operating systems in AWS OpsWorks Stacks.
|
4610
4610
|
#
|
4611
4611
|
# @!attribute [rw] name
|
4612
|
-
# The name of the operating system, such as `Amazon Linux
|
4612
|
+
# The name of the operating system, such as `Amazon Linux 2018.03`.
|
4613
4613
|
# @return [String]
|
4614
4614
|
#
|
4615
4615
|
# @!attribute [rw] id
|
4616
4616
|
# The ID of a supported operating system, such as `Amazon Linux
|
4617
|
-
#
|
4617
|
+
# 2018.03`.
|
4618
4618
|
# @return [String]
|
4619
4619
|
#
|
4620
4620
|
# @!attribute [rw] type
|
@@ -4688,7 +4688,7 @@ module Aws::OpsWorks
|
|
4688
4688
|
#
|
4689
4689
|
#
|
4690
4690
|
#
|
4691
|
-
# [1]:
|
4691
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
4692
4692
|
# @return [String]
|
4693
4693
|
#
|
4694
4694
|
# @!attribute [rw] allow_ssh
|
@@ -4717,7 +4717,7 @@ module Aws::OpsWorks
|
|
4717
4717
|
#
|
4718
4718
|
#
|
4719
4719
|
#
|
4720
|
-
# [1]:
|
4720
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html
|
4721
4721
|
# @return [String]
|
4722
4722
|
#
|
4723
4723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/Permission AWS API Documentation
|
@@ -4775,7 +4775,7 @@ module Aws::OpsWorks
|
|
4775
4775
|
#
|
4776
4776
|
#
|
4777
4777
|
#
|
4778
|
-
# [1]:
|
4778
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
4779
4779
|
# @return [String]
|
4780
4780
|
#
|
4781
4781
|
# @!attribute [rw] created_at
|
@@ -5373,7 +5373,7 @@ module Aws::OpsWorks
|
|
5373
5373
|
#
|
5374
5374
|
#
|
5375
5375
|
#
|
5376
|
-
# [1]:
|
5376
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html
|
5377
5377
|
# @return [String]
|
5378
5378
|
#
|
5379
5379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/SetPermissionRequest AWS API Documentation
|
@@ -5454,7 +5454,7 @@ module Aws::OpsWorks
|
|
5454
5454
|
#
|
5455
5455
|
#
|
5456
5456
|
#
|
5457
|
-
# [1]:
|
5457
|
+
# [1]: https://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/TerminologyandKeyConcepts.html#conn-drain
|
5458
5458
|
# @return [Boolean]
|
5459
5459
|
#
|
5460
5460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/ShutdownEventConfiguration AWS API Documentation
|
@@ -5471,8 +5471,8 @@ module Aws::OpsWorks
|
|
5471
5471
|
#
|
5472
5472
|
#
|
5473
5473
|
#
|
5474
|
-
# [1]:
|
5475
|
-
# [2]:
|
5474
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
5475
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
5476
5476
|
#
|
5477
5477
|
# @note When making an API call, you may pass Source
|
5478
5478
|
# data as a hash:
|
@@ -5517,14 +5517,14 @@ module Aws::OpsWorks
|
|
5517
5517
|
# the password.
|
5518
5518
|
#
|
5519
5519
|
# For more information on how to safely handle IAM credentials, see
|
5520
|
-
# [
|
5520
|
+
# [https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html][1].
|
5521
5521
|
#
|
5522
5522
|
# In responses, AWS OpsWorks Stacks returns `*****FILTERED*****`
|
5523
5523
|
# instead of the actual value.
|
5524
5524
|
#
|
5525
5525
|
#
|
5526
5526
|
#
|
5527
|
-
# [1]:
|
5527
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html
|
5528
5528
|
# @return [String]
|
5529
5529
|
#
|
5530
5530
|
# @!attribute [rw] ssh_key
|
@@ -5606,7 +5606,7 @@ module Aws::OpsWorks
|
|
5606
5606
|
#
|
5607
5607
|
#
|
5608
5608
|
#
|
5609
|
-
# [1]:
|
5609
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
5610
5610
|
# @return [String]
|
5611
5611
|
#
|
5612
5612
|
# @!attribute [rw] vpc_id
|
@@ -5628,7 +5628,7 @@ module Aws::OpsWorks
|
|
5628
5628
|
#
|
5629
5629
|
#
|
5630
5630
|
#
|
5631
|
-
# [1]:
|
5631
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
5632
5632
|
# @return [String]
|
5633
5633
|
#
|
5634
5634
|
# @!attribute [rw] default_os
|
@@ -5645,7 +5645,7 @@ module Aws::OpsWorks
|
|
5645
5645
|
#
|
5646
5646
|
#
|
5647
5647
|
#
|
5648
|
-
# [1]:
|
5648
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
5649
5649
|
# @return [String]
|
5650
5650
|
#
|
5651
5651
|
# @!attribute [rw] default_subnet_id
|
@@ -5667,7 +5667,7 @@ module Aws::OpsWorks
|
|
5667
5667
|
#
|
5668
5668
|
#
|
5669
5669
|
#
|
5670
|
-
# [1]:
|
5670
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
5671
5671
|
# @return [String]
|
5672
5672
|
#
|
5673
5673
|
# @!attribute [rw] configuration_manager
|
@@ -5681,7 +5681,7 @@ module Aws::OpsWorks
|
|
5681
5681
|
#
|
5682
5682
|
#
|
5683
5683
|
#
|
5684
|
-
# [1]:
|
5684
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
5685
5685
|
# @return [Types::ChefConfiguration]
|
5686
5686
|
#
|
5687
5687
|
# @!attribute [rw] use_custom_cookbooks
|
@@ -5695,13 +5695,13 @@ module Aws::OpsWorks
|
|
5695
5695
|
#
|
5696
5696
|
# @!attribute [rw] custom_cookbooks_source
|
5697
5697
|
# Contains the information required to retrieve an app or cookbook
|
5698
|
-
# from a repository. For more information, see [
|
5699
|
-
# [
|
5698
|
+
# from a repository. For more information, see [Adding Apps][1] or
|
5699
|
+
# [Cookbooks and Recipes][2].
|
5700
5700
|
#
|
5701
5701
|
#
|
5702
5702
|
#
|
5703
|
-
# [1]:
|
5704
|
-
# [2]:
|
5703
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
5704
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
5705
5705
|
# @return [Types::Source]
|
5706
5706
|
#
|
5707
5707
|
# @!attribute [rw] default_ssh_key_name
|
@@ -5721,7 +5721,7 @@ module Aws::OpsWorks
|
|
5721
5721
|
#
|
5722
5722
|
#
|
5723
5723
|
#
|
5724
|
-
# [1]:
|
5724
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
5725
5725
|
# @return [String]
|
5726
5726
|
#
|
5727
5727
|
# @!attribute [rw] agent_version
|
@@ -5873,7 +5873,13 @@ module Aws::OpsWorks
|
|
5873
5873
|
# @return [String]
|
5874
5874
|
#
|
5875
5875
|
# @!attribute [rw] force
|
5876
|
-
# Specifies whether to force an instance to stop.
|
5876
|
+
# Specifies whether to force an instance to stop. If the instance's
|
5877
|
+
# root device type is `ebs`, or EBS-backed, adding the `Force`
|
5878
|
+
# parameter to the `StopInstances` API call disassociates the AWS
|
5879
|
+
# OpsWorks Stacks instance from EC2, and forces deletion of *only* the
|
5880
|
+
# OpsWorks Stacks instance. You must also delete the
|
5881
|
+
# formerly-associated instance in EC2 after troubleshooting and
|
5882
|
+
# replacing the AWS OpsWorks Stacks instance with a new one.
|
5877
5883
|
# @return [Boolean]
|
5878
5884
|
#
|
5879
5885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/StopInstanceRequest AWS API Documentation
|
@@ -6147,19 +6153,18 @@ module Aws::OpsWorks
|
|
6147
6153
|
# There is no specific limit on the number of environment variables.
|
6148
6154
|
# However, the size of the associated data structure - which includes
|
6149
6155
|
# the variables' names, values, and protected flag values - cannot
|
6150
|
-
# exceed
|
6151
|
-
#
|
6152
|
-
#
|
6156
|
+
# exceed 20 KB. This limit should accommodate most if not all use
|
6157
|
+
# cases. Exceeding it will cause an exception with the message,
|
6158
|
+
# "Environment: is too large (maximum is 20 KB)."
|
6153
6159
|
#
|
6154
|
-
# <note markdown="1">
|
6155
|
-
#
|
6156
|
-
# stack's Chef version.
|
6160
|
+
# <note markdown="1"> If you have specified one or more environment variables, you cannot
|
6161
|
+
# modify the stack's Chef version.
|
6157
6162
|
#
|
6158
6163
|
# </note>
|
6159
6164
|
#
|
6160
6165
|
#
|
6161
6166
|
#
|
6162
|
-
# [1]:
|
6167
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html#workingapps-creating-environment
|
6163
6168
|
# @return [Array<Types::EnvironmentVariable>]
|
6164
6169
|
#
|
6165
6170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/UpdateAppRequest AWS API Documentation
|
@@ -6240,7 +6245,7 @@ module Aws::OpsWorks
|
|
6240
6245
|
#
|
6241
6246
|
#
|
6242
6247
|
#
|
6243
|
-
# [1]:
|
6248
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
|
6244
6249
|
# @return [String]
|
6245
6250
|
#
|
6246
6251
|
# @!attribute [rw] auto_scaling_type
|
@@ -6257,9 +6262,9 @@ module Aws::OpsWorks
|
|
6257
6262
|
# following. You cannot update an instance that is using a custom AMI.
|
6258
6263
|
#
|
6259
6264
|
# * A supported Linux operating system: An Amazon Linux version, such
|
6260
|
-
# as `Amazon Linux
|
6261
|
-
#
|
6262
|
-
# `Amazon Linux 2015.03`.
|
6265
|
+
# as `Amazon Linux 2018.03`, `Amazon Linux 2017.09`, `Amazon Linux
|
6266
|
+
# 2017.03`, `Amazon Linux 2016.09`, `Amazon Linux 2016.03`, `Amazon
|
6267
|
+
# Linux 2015.09`, or `Amazon Linux 2015.03`.
|
6263
6268
|
#
|
6264
6269
|
# * A supported Ubuntu operating system, such as `Ubuntu 16.04 LTS`,
|
6265
6270
|
# `Ubuntu 14.04 LTS`, or `Ubuntu 12.04 LTS`.
|
@@ -6292,8 +6297,8 @@ module Aws::OpsWorks
|
|
6292
6297
|
#
|
6293
6298
|
#
|
6294
6299
|
#
|
6295
|
-
# [1]:
|
6296
|
-
# [2]:
|
6300
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
|
6301
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
6297
6302
|
# @return [String]
|
6298
6303
|
#
|
6299
6304
|
# @!attribute [rw] ami_id
|
@@ -6316,7 +6321,7 @@ module Aws::OpsWorks
|
|
6316
6321
|
#
|
6317
6322
|
#
|
6318
6323
|
#
|
6319
|
-
# [1]:
|
6324
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html
|
6320
6325
|
# @return [String]
|
6321
6326
|
#
|
6322
6327
|
# @!attribute [rw] install_updates_on_boot
|
@@ -6459,7 +6464,7 @@ module Aws::OpsWorks
|
|
6459
6464
|
#
|
6460
6465
|
#
|
6461
6466
|
#
|
6462
|
-
# [1]:
|
6467
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/layers.html
|
6463
6468
|
# @return [String]
|
6464
6469
|
#
|
6465
6470
|
# @!attribute [rw] attributes
|
@@ -6479,7 +6484,7 @@ module Aws::OpsWorks
|
|
6479
6484
|
#
|
6480
6485
|
#
|
6481
6486
|
#
|
6482
|
-
# [1]:
|
6487
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
6483
6488
|
# @return [String]
|
6484
6489
|
#
|
6485
6490
|
# @!attribute [rw] custom_json
|
@@ -6489,7 +6494,7 @@ module Aws::OpsWorks
|
|
6489
6494
|
#
|
6490
6495
|
#
|
6491
6496
|
#
|
6492
|
-
# [1]:
|
6497
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-json-override.html
|
6493
6498
|
# @return [String]
|
6494
6499
|
#
|
6495
6500
|
# @!attribute [rw] custom_security_group_ids
|
@@ -6516,8 +6521,8 @@ module Aws::OpsWorks
|
|
6516
6521
|
#
|
6517
6522
|
#
|
6518
6523
|
#
|
6519
|
-
# [1]:
|
6520
|
-
# [2]:
|
6524
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
6525
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
6521
6526
|
# @return [Boolean]
|
6522
6527
|
#
|
6523
6528
|
# @!attribute [rw] auto_assign_public_ips
|
@@ -6527,7 +6532,7 @@ module Aws::OpsWorks
|
|
6527
6532
|
#
|
6528
6533
|
#
|
6529
6534
|
#
|
6530
|
-
# [1]:
|
6535
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html
|
6531
6536
|
# @return [Boolean]
|
6532
6537
|
#
|
6533
6538
|
# @!attribute [rw] custom_recipes
|
@@ -6691,7 +6696,7 @@ module Aws::OpsWorks
|
|
6691
6696
|
#
|
6692
6697
|
#
|
6693
6698
|
#
|
6694
|
-
# [1]:
|
6699
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
6695
6700
|
# @return [String]
|
6696
6701
|
#
|
6697
6702
|
# @!attribute [rw] default_os
|
@@ -6699,9 +6704,9 @@ module Aws::OpsWorks
|
|
6699
6704
|
# following:
|
6700
6705
|
#
|
6701
6706
|
# * A supported Linux operating system: An Amazon Linux version, such
|
6702
|
-
# as `Amazon Linux
|
6703
|
-
#
|
6704
|
-
# `Amazon Linux 2015.03`.
|
6707
|
+
# as `Amazon Linux 2018.03`, `Amazon Linux 2017.09`, `Amazon Linux
|
6708
|
+
# 2017.03`, `Amazon Linux 2016.09`, `Amazon Linux 2016.03`, `Amazon
|
6709
|
+
# Linux 2015.09`, or `Amazon Linux 2015.03`.
|
6705
6710
|
#
|
6706
6711
|
# * A supported Ubuntu operating system, such as `Ubuntu 16.04 LTS`,
|
6707
6712
|
# `Ubuntu 14.04 LTS`, or `Ubuntu 12.04 LTS`.
|
@@ -6726,8 +6731,8 @@ module Aws::OpsWorks
|
|
6726
6731
|
#
|
6727
6732
|
#
|
6728
6733
|
#
|
6729
|
-
# [1]:
|
6730
|
-
# [2]:
|
6734
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-custom-ami.html
|
6735
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-os.html
|
6731
6736
|
# @return [String]
|
6732
6737
|
#
|
6733
6738
|
# @!attribute [rw] hostname_theme
|
@@ -6745,7 +6750,7 @@ module Aws::OpsWorks
|
|
6745
6750
|
#
|
6746
6751
|
# * `Fruits`
|
6747
6752
|
#
|
6748
|
-
# * `
|
6753
|
+
# * `Greek_Deities_and_Titans`
|
6749
6754
|
#
|
6750
6755
|
# * `Legendary_creatures_from_Japan`
|
6751
6756
|
#
|
@@ -6772,7 +6777,7 @@ module Aws::OpsWorks
|
|
6772
6777
|
#
|
6773
6778
|
#
|
6774
6779
|
#
|
6775
|
-
# [1]:
|
6780
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
6776
6781
|
# @return [String]
|
6777
6782
|
#
|
6778
6783
|
# @!attribute [rw] default_subnet_id
|
@@ -6798,7 +6803,7 @@ module Aws::OpsWorks
|
|
6798
6803
|
#
|
6799
6804
|
#
|
6800
6805
|
#
|
6801
|
-
# [1]:
|
6806
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html
|
6802
6807
|
# @return [String]
|
6803
6808
|
#
|
6804
6809
|
# @!attribute [rw] configuration_manager
|
@@ -6815,7 +6820,7 @@ module Aws::OpsWorks
|
|
6815
6820
|
#
|
6816
6821
|
#
|
6817
6822
|
#
|
6818
|
-
# [1]:
|
6823
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
6819
6824
|
# @return [Types::ChefConfiguration]
|
6820
6825
|
#
|
6821
6826
|
# @!attribute [rw] use_custom_cookbooks
|
@@ -6824,13 +6829,13 @@ module Aws::OpsWorks
|
|
6824
6829
|
#
|
6825
6830
|
# @!attribute [rw] custom_cookbooks_source
|
6826
6831
|
# Contains the information required to retrieve an app or cookbook
|
6827
|
-
# from a repository. For more information, see [
|
6828
|
-
# [
|
6832
|
+
# from a repository. For more information, see [Adding Apps][1] or
|
6833
|
+
# [Cookbooks and Recipes][2].
|
6829
6834
|
#
|
6830
6835
|
#
|
6831
6836
|
#
|
6832
|
-
# [1]:
|
6833
|
-
# [2]:
|
6837
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html
|
6838
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html
|
6834
6839
|
# @return [Types::Source]
|
6835
6840
|
#
|
6836
6841
|
# @!attribute [rw] default_ssh_key_name
|
@@ -6844,9 +6849,9 @@ module Aws::OpsWorks
|
|
6844
6849
|
#
|
6845
6850
|
#
|
6846
6851
|
#
|
6847
|
-
# [1]:
|
6848
|
-
# [2]:
|
6849
|
-
# [3]:
|
6852
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-ssh.html
|
6853
|
+
# [2]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-ssh-access.html
|
6854
|
+
# [3]: https://docs.aws.amazon.com/opsworks/latest/userguide/workinginstances-add.html
|
6850
6855
|
# @return [String]
|
6851
6856
|
#
|
6852
6857
|
# @!attribute [rw] default_root_device_type
|
@@ -6857,7 +6862,7 @@ module Aws::OpsWorks
|
|
6857
6862
|
#
|
6858
6863
|
#
|
6859
6864
|
#
|
6860
|
-
# [1]:
|
6865
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device
|
6861
6866
|
# @return [String]
|
6862
6867
|
#
|
6863
6868
|
# @!attribute [rw] use_opsworks_security_groups
|
@@ -6887,7 +6892,7 @@ module Aws::OpsWorks
|
|
6887
6892
|
#
|
6888
6893
|
#
|
6889
6894
|
#
|
6890
|
-
# [1]:
|
6895
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html
|
6891
6896
|
# @return [Boolean]
|
6892
6897
|
#
|
6893
6898
|
# @!attribute [rw] agent_version
|
@@ -6972,7 +6977,7 @@ module Aws::OpsWorks
|
|
6972
6977
|
#
|
6973
6978
|
#
|
6974
6979
|
#
|
6975
|
-
# [1]:
|
6980
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html
|
6976
6981
|
# @return [Boolean]
|
6977
6982
|
#
|
6978
6983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/UpdateUserProfileRequest AWS API Documentation
|
@@ -7040,7 +7045,7 @@ module Aws::OpsWorks
|
|
7040
7045
|
#
|
7041
7046
|
#
|
7042
7047
|
#
|
7043
|
-
# [1]:
|
7048
|
+
# [1]: https://docs.aws.amazon.com/opsworks/latest/userguide/security-settingsshkey.html
|
7044
7049
|
# @return [Boolean]
|
7045
7050
|
#
|
7046
7051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/UserProfile AWS API Documentation
|
@@ -7094,7 +7099,7 @@ module Aws::OpsWorks
|
|
7094
7099
|
#
|
7095
7100
|
#
|
7096
7101
|
#
|
7097
|
-
# [1]:
|
7102
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeVolumes.html
|
7098
7103
|
# @return [String]
|
7099
7104
|
#
|
7100
7105
|
# @!attribute [rw] size
|
@@ -7115,7 +7120,7 @@ module Aws::OpsWorks
|
|
7115
7120
|
#
|
7116
7121
|
#
|
7117
7122
|
#
|
7118
|
-
# [1]:
|
7123
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
7119
7124
|
# @return [String]
|
7120
7125
|
#
|
7121
7126
|
# @!attribute [rw] availability_zone
|
@@ -7124,7 +7129,7 @@ module Aws::OpsWorks
|
|
7124
7129
|
#
|
7125
7130
|
#
|
7126
7131
|
#
|
7127
|
-
# [1]:
|
7132
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html
|
7128
7133
|
# @return [String]
|
7129
7134
|
#
|
7130
7135
|
# @!attribute [rw] volume_type
|
@@ -7149,7 +7154,7 @@ module Aws::OpsWorks
|
|
7149
7154
|
#
|
7150
7155
|
#
|
7151
7156
|
#
|
7152
|
-
# [1]:
|
7157
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
|
7153
7158
|
# @return [String]
|
7154
7159
|
#
|
7155
7160
|
# @!attribute [rw] iops
|
@@ -7162,7 +7167,7 @@ module Aws::OpsWorks
|
|
7162
7167
|
#
|
7163
7168
|
#
|
7164
7169
|
#
|
7165
|
-
# [1]:
|
7170
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
|
7166
7171
|
# @return [Boolean]
|
7167
7172
|
#
|
7168
7173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/Volume AWS API Documentation
|
@@ -7242,7 +7247,7 @@ module Aws::OpsWorks
|
|
7242
7247
|
#
|
7243
7248
|
#
|
7244
7249
|
#
|
7245
|
-
# [1]:
|
7250
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
|
7246
7251
|
# @return [String]
|
7247
7252
|
#
|
7248
7253
|
# @!attribute [rw] iops
|
@@ -7255,7 +7260,7 @@ module Aws::OpsWorks
|
|
7255
7260
|
#
|
7256
7261
|
#
|
7257
7262
|
#
|
7258
|
-
# [1]:
|
7263
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
|
7259
7264
|
# @return [Boolean]
|
7260
7265
|
#
|
7261
7266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/VolumeConfiguration AWS API Documentation
|