aws-sdk-opsworks 1.21.0 → 1.26.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.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::OpsWorks
11
+
9
12
  class Stack
10
13
 
11
14
  extend Aws::Deprecations
@@ -21,6 +24,7 @@ module Aws::OpsWorks
21
24
  @id = extract_id(args, options)
22
25
  @data = options.delete(:data)
23
26
  @client = options.delete(:client) || Client.new(options)
27
+ @waiter_block_warned = false
24
28
  end
25
29
 
26
30
  # @!group Read-Only Attributes
@@ -254,7 +258,8 @@ module Aws::OpsWorks
254
258
  # Waiter polls an API operation until a resource enters a desired
255
259
  # state.
256
260
  #
257
- # @note The waiting operation is performed on a copy. The original resource remains unchanged
261
+ # @note The waiting operation is performed on a copy. The original resource
262
+ # remains unchanged.
258
263
  #
259
264
  # ## Basic Usage
260
265
  #
@@ -267,13 +272,15 @@ module Aws::OpsWorks
267
272
  #
268
273
  # ## Example
269
274
  #
270
- # instance.wait_until(max_attempts:10, delay:5) {|instance| instance.state.name == 'running' }
275
+ # instance.wait_until(max_attempts:10, delay:5) do |instance|
276
+ # instance.state.name == 'running'
277
+ # end
271
278
  #
272
279
  # ## Configuration
273
280
  #
274
281
  # You can configure the maximum number of polling attempts, and the
275
- # delay (in seconds) between each polling attempt. The waiting condition is set
276
- # by passing a block to {#wait_until}:
282
+ # delay (in seconds) between each polling attempt. The waiting condition is
283
+ # set by passing a block to {#wait_until}:
277
284
  #
278
285
  # # poll for ~25 seconds
279
286
  # resource.wait_until(max_attempts:5,delay:5) {|resource|...}
@@ -304,17 +311,16 @@ module Aws::OpsWorks
304
311
  # # resource did not enter the desired state in time
305
312
  # end
306
313
  #
314
+ # @yieldparam [Resource] resource to be used in the waiting condition.
307
315
  #
308
- # @yield param [Resource] resource to be used in the waiting condition
309
- #
310
- # @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter terminates
311
- # because the waiter has entered a state that it will not transition
312
- # out of, preventing success.
316
+ # @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
317
+ # terminates because the waiter has entered a state that it will not
318
+ # transition out of, preventing success.
313
319
  #
314
320
  # yet successful.
315
321
  #
316
- # @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is encountered
317
- # while polling for a resource that is not expected.
322
+ # @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
323
+ # encountered while polling for a resource that is not expected.
318
324
  #
319
325
  # @raise [NotImplementedError] Raised when the resource does not
320
326
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::OpsWorks
11
+
9
12
  class StackSummary
10
13
 
11
14
  extend Aws::Deprecations
@@ -21,6 +24,7 @@ module Aws::OpsWorks
21
24
  @stack_id = extract_stack_id(args, options)
22
25
  @data = options.delete(:data)
23
26
  @client = options.delete(:client) || Client.new(options)
27
+ @waiter_block_warned = false
24
28
  end
25
29
 
26
30
  # @!group Read-Only Attributes
@@ -101,7 +105,8 @@ module Aws::OpsWorks
101
105
  # Waiter polls an API operation until a resource enters a desired
102
106
  # state.
103
107
  #
104
- # @note The waiting operation is performed on a copy. The original resource remains unchanged
108
+ # @note The waiting operation is performed on a copy. The original resource
109
+ # remains unchanged.
105
110
  #
106
111
  # ## Basic Usage
107
112
  #
@@ -114,13 +119,15 @@ module Aws::OpsWorks
114
119
  #
115
120
  # ## Example
116
121
  #
117
- # instance.wait_until(max_attempts:10, delay:5) {|instance| instance.state.name == 'running' }
122
+ # instance.wait_until(max_attempts:10, delay:5) do |instance|
123
+ # instance.state.name == 'running'
124
+ # end
118
125
  #
119
126
  # ## Configuration
120
127
  #
121
128
  # You can configure the maximum number of polling attempts, and the
122
- # delay (in seconds) between each polling attempt. The waiting condition is set
123
- # by passing a block to {#wait_until}:
129
+ # delay (in seconds) between each polling attempt. The waiting condition is
130
+ # set by passing a block to {#wait_until}:
124
131
  #
125
132
  # # poll for ~25 seconds
126
133
  # resource.wait_until(max_attempts:5,delay:5) {|resource|...}
@@ -151,17 +158,16 @@ module Aws::OpsWorks
151
158
  # # resource did not enter the desired state in time
152
159
  # end
153
160
  #
161
+ # @yieldparam [Resource] resource to be used in the waiting condition.
154
162
  #
155
- # @yield param [Resource] resource to be used in the waiting condition
156
- #
157
- # @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter terminates
158
- # because the waiter has entered a state that it will not transition
159
- # out of, preventing success.
163
+ # @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
164
+ # terminates because the waiter has entered a state that it will not
165
+ # transition out of, preventing success.
160
166
  #
161
167
  # yet successful.
162
168
  #
163
- # @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is encountered
164
- # while polling for a resource that is not expected.
169
+ # @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
170
+ # encountered while polling for a resource that is not expected.
165
171
  #
166
172
  # @raise [NotImplementedError] Raised when the resource does not
167
173
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -23,6 +25,7 @@ module Aws::OpsWorks
23
25
  class AgentVersion < Struct.new(
24
26
  :version,
25
27
  :configuration_manager)
28
+ SENSITIVE = []
26
29
  include Aws::Structure
27
30
  end
28
31
 
@@ -118,6 +121,7 @@ module Aws::OpsWorks
118
121
  :attributes,
119
122
  :created_at,
120
123
  :environment)
124
+ SENSITIVE = []
121
125
  include Aws::Structure
122
126
  end
123
127
 
@@ -143,6 +147,7 @@ module Aws::OpsWorks
143
147
  class AssignInstanceRequest < Struct.new(
144
148
  :instance_id,
145
149
  :layer_ids)
150
+ SENSITIVE = []
146
151
  include Aws::Structure
147
152
  end
148
153
 
@@ -167,6 +172,7 @@ module Aws::OpsWorks
167
172
  class AssignVolumeRequest < Struct.new(
168
173
  :volume_id,
169
174
  :instance_id)
175
+ SENSITIVE = []
170
176
  include Aws::Structure
171
177
  end
172
178
 
@@ -191,6 +197,7 @@ module Aws::OpsWorks
191
197
  class AssociateElasticIpRequest < Struct.new(
192
198
  :elastic_ip,
193
199
  :instance_id)
200
+ SENSITIVE = []
194
201
  include Aws::Structure
195
202
  end
196
203
 
@@ -216,6 +223,7 @@ module Aws::OpsWorks
216
223
  class AttachElasticLoadBalancerRequest < Struct.new(
217
224
  :elastic_load_balancer_name,
218
225
  :layer_id)
226
+ SENSITIVE = []
219
227
  include Aws::Structure
220
228
  end
221
229
 
@@ -305,6 +313,7 @@ module Aws::OpsWorks
305
313
  :memory_threshold,
306
314
  :load_threshold,
307
315
  :alarms)
316
+ SENSITIVE = []
308
317
  include Aws::Structure
309
318
  end
310
319
 
@@ -364,6 +373,7 @@ module Aws::OpsWorks
364
373
  :no_device,
365
374
  :virtual_name,
366
375
  :ebs)
376
+ SENSITIVE = []
367
377
  include Aws::Structure
368
378
  end
369
379
 
@@ -390,6 +400,7 @@ module Aws::OpsWorks
390
400
  class ChefConfiguration < Struct.new(
391
401
  :manage_berkshelf,
392
402
  :berkshelf_version)
403
+ SENSITIVE = []
393
404
  include Aws::Structure
394
405
  end
395
406
 
@@ -783,6 +794,7 @@ module Aws::OpsWorks
783
794
  :clone_app_ids,
784
795
  :default_root_device_type,
785
796
  :agent_version)
797
+ SENSITIVE = []
786
798
  include Aws::Structure
787
799
  end
788
800
 
@@ -796,6 +808,7 @@ module Aws::OpsWorks
796
808
  #
797
809
  class CloneStackResult < Struct.new(
798
810
  :stack_id)
811
+ SENSITIVE = []
799
812
  include Aws::Structure
800
813
  end
801
814
 
@@ -836,6 +849,7 @@ module Aws::OpsWorks
836
849
  class CloudWatchLogsConfiguration < Struct.new(
837
850
  :enabled,
838
851
  :log_streams)
852
+ SENSITIVE = []
839
853
  include Aws::Structure
840
854
  end
841
855
 
@@ -958,6 +972,7 @@ module Aws::OpsWorks
958
972
  :buffer_duration,
959
973
  :batch_count,
960
974
  :batch_size)
975
+ SENSITIVE = []
961
976
  include Aws::Structure
962
977
  end
963
978
 
@@ -1048,6 +1063,7 @@ module Aws::OpsWorks
1048
1063
  :exit_code,
1049
1064
  :log_url,
1050
1065
  :type)
1066
+ SENSITIVE = []
1051
1067
  include Aws::Structure
1052
1068
  end
1053
1069
 
@@ -1183,6 +1199,7 @@ module Aws::OpsWorks
1183
1199
  :ssl_configuration,
1184
1200
  :attributes,
1185
1201
  :environment)
1202
+ SENSITIVE = []
1186
1203
  include Aws::Structure
1187
1204
  end
1188
1205
 
@@ -1196,6 +1213,7 @@ module Aws::OpsWorks
1196
1213
  #
1197
1214
  class CreateAppResult < Struct.new(
1198
1215
  :app_id)
1216
+ SENSITIVE = []
1199
1217
  include Aws::Structure
1200
1218
  end
1201
1219
 
@@ -1270,6 +1288,7 @@ module Aws::OpsWorks
1270
1288
  :command,
1271
1289
  :comment,
1272
1290
  :custom_json)
1291
+ SENSITIVE = []
1273
1292
  include Aws::Structure
1274
1293
  end
1275
1294
 
@@ -1284,6 +1303,7 @@ module Aws::OpsWorks
1284
1303
  #
1285
1304
  class CreateDeploymentResult < Struct.new(
1286
1305
  :deployment_id)
1306
+ SENSITIVE = []
1287
1307
  include Aws::Structure
1288
1308
  end
1289
1309
 
@@ -1541,6 +1561,7 @@ module Aws::OpsWorks
1541
1561
  :ebs_optimized,
1542
1562
  :agent_version,
1543
1563
  :tenancy)
1564
+ SENSITIVE = []
1544
1565
  include Aws::Structure
1545
1566
  end
1546
1567
 
@@ -1554,6 +1575,7 @@ module Aws::OpsWorks
1554
1575
  #
1555
1576
  class CreateInstanceResult < Struct.new(
1556
1577
  :instance_id)
1578
+ SENSITIVE = []
1557
1579
  include Aws::Structure
1558
1580
  end
1559
1581
 
@@ -1772,6 +1794,7 @@ module Aws::OpsWorks
1772
1794
  :install_updates_on_boot,
1773
1795
  :use_ebs_optimized_instances,
1774
1796
  :lifecycle_event_configuration)
1797
+ SENSITIVE = []
1775
1798
  include Aws::Structure
1776
1799
  end
1777
1800
 
@@ -1785,6 +1808,7 @@ module Aws::OpsWorks
1785
1808
  #
1786
1809
  class CreateLayerResult < Struct.new(
1787
1810
  :layer_id)
1811
+ SENSITIVE = []
1788
1812
  include Aws::Structure
1789
1813
  end
1790
1814
 
@@ -2169,6 +2193,7 @@ module Aws::OpsWorks
2169
2193
  :default_ssh_key_name,
2170
2194
  :default_root_device_type,
2171
2195
  :agent_version)
2196
+ SENSITIVE = []
2172
2197
  include Aws::Structure
2173
2198
  end
2174
2199
 
@@ -2183,6 +2208,7 @@ module Aws::OpsWorks
2183
2208
  #
2184
2209
  class CreateStackResult < Struct.new(
2185
2210
  :stack_id)
2211
+ SENSITIVE = []
2186
2212
  include Aws::Structure
2187
2213
  end
2188
2214
 
@@ -2230,6 +2256,7 @@ module Aws::OpsWorks
2230
2256
  :ssh_username,
2231
2257
  :ssh_public_key,
2232
2258
  :allow_self_management)
2259
+ SENSITIVE = []
2233
2260
  include Aws::Structure
2234
2261
  end
2235
2262
 
@@ -2243,6 +2270,7 @@ module Aws::OpsWorks
2243
2270
  #
2244
2271
  class CreateUserProfileResult < Struct.new(
2245
2272
  :iam_user_arn)
2273
+ SENSITIVE = []
2246
2274
  include Aws::Structure
2247
2275
  end
2248
2276
 
@@ -2276,6 +2304,7 @@ module Aws::OpsWorks
2276
2304
  :type,
2277
2305
  :arn,
2278
2306
  :database_name)
2307
+ SENSITIVE = []
2279
2308
  include Aws::Structure
2280
2309
  end
2281
2310
 
@@ -2294,6 +2323,7 @@ module Aws::OpsWorks
2294
2323
  #
2295
2324
  class DeleteAppRequest < Struct.new(
2296
2325
  :app_id)
2326
+ SENSITIVE = []
2297
2327
  include Aws::Structure
2298
2328
  end
2299
2329
 
@@ -2324,6 +2354,7 @@ module Aws::OpsWorks
2324
2354
  :instance_id,
2325
2355
  :delete_elastic_ip,
2326
2356
  :delete_volumes)
2357
+ SENSITIVE = []
2327
2358
  include Aws::Structure
2328
2359
  end
2329
2360
 
@@ -2342,6 +2373,7 @@ module Aws::OpsWorks
2342
2373
  #
2343
2374
  class DeleteLayerRequest < Struct.new(
2344
2375
  :layer_id)
2376
+ SENSITIVE = []
2345
2377
  include Aws::Structure
2346
2378
  end
2347
2379
 
@@ -2360,6 +2392,7 @@ module Aws::OpsWorks
2360
2392
  #
2361
2393
  class DeleteStackRequest < Struct.new(
2362
2394
  :stack_id)
2395
+ SENSITIVE = []
2363
2396
  include Aws::Structure
2364
2397
  end
2365
2398
 
@@ -2378,6 +2411,7 @@ module Aws::OpsWorks
2378
2411
  #
2379
2412
  class DeleteUserProfileRequest < Struct.new(
2380
2413
  :iam_user_arn)
2414
+ SENSITIVE = []
2381
2415
  include Aws::Structure
2382
2416
  end
2383
2417
 
@@ -2464,6 +2498,7 @@ module Aws::OpsWorks
2464
2498
  :status,
2465
2499
  :custom_json,
2466
2500
  :instance_ids)
2501
+ SENSITIVE = []
2467
2502
  include Aws::Structure
2468
2503
  end
2469
2504
 
@@ -2553,6 +2588,7 @@ module Aws::OpsWorks
2553
2588
  class DeploymentCommand < Struct.new(
2554
2589
  :name,
2555
2590
  :args)
2591
+ SENSITIVE = []
2556
2592
  include Aws::Structure
2557
2593
  end
2558
2594
 
@@ -2571,6 +2607,7 @@ module Aws::OpsWorks
2571
2607
  #
2572
2608
  class DeregisterEcsClusterRequest < Struct.new(
2573
2609
  :ecs_cluster_arn)
2610
+ SENSITIVE = []
2574
2611
  include Aws::Structure
2575
2612
  end
2576
2613
 
@@ -2589,6 +2626,7 @@ module Aws::OpsWorks
2589
2626
  #
2590
2627
  class DeregisterElasticIpRequest < Struct.new(
2591
2628
  :elastic_ip)
2629
+ SENSITIVE = []
2592
2630
  include Aws::Structure
2593
2631
  end
2594
2632
 
@@ -2607,6 +2645,7 @@ module Aws::OpsWorks
2607
2645
  #
2608
2646
  class DeregisterInstanceRequest < Struct.new(
2609
2647
  :instance_id)
2648
+ SENSITIVE = []
2610
2649
  include Aws::Structure
2611
2650
  end
2612
2651
 
@@ -2625,6 +2664,7 @@ module Aws::OpsWorks
2625
2664
  #
2626
2665
  class DeregisterRdsDbInstanceRequest < Struct.new(
2627
2666
  :rds_db_instance_arn)
2667
+ SENSITIVE = []
2628
2668
  include Aws::Structure
2629
2669
  end
2630
2670
 
@@ -2645,6 +2685,7 @@ module Aws::OpsWorks
2645
2685
  #
2646
2686
  class DeregisterVolumeRequest < Struct.new(
2647
2687
  :volume_id)
2688
+ SENSITIVE = []
2648
2689
  include Aws::Structure
2649
2690
  end
2650
2691
 
@@ -2672,6 +2713,7 @@ module Aws::OpsWorks
2672
2713
  class DescribeAgentVersionsRequest < Struct.new(
2673
2714
  :stack_id,
2674
2715
  :configuration_manager)
2716
+ SENSITIVE = []
2675
2717
  include Aws::Structure
2676
2718
  end
2677
2719
 
@@ -2687,6 +2729,7 @@ module Aws::OpsWorks
2687
2729
  #
2688
2730
  class DescribeAgentVersionsResult < Struct.new(
2689
2731
  :agent_versions)
2732
+ SENSITIVE = []
2690
2733
  include Aws::Structure
2691
2734
  end
2692
2735
 
@@ -2714,6 +2757,7 @@ module Aws::OpsWorks
2714
2757
  class DescribeAppsRequest < Struct.new(
2715
2758
  :stack_id,
2716
2759
  :app_ids)
2760
+ SENSITIVE = []
2717
2761
  include Aws::Structure
2718
2762
  end
2719
2763
 
@@ -2727,6 +2771,7 @@ module Aws::OpsWorks
2727
2771
  #
2728
2772
  class DescribeAppsResult < Struct.new(
2729
2773
  :apps)
2774
+ SENSITIVE = []
2730
2775
  include Aws::Structure
2731
2776
  end
2732
2777
 
@@ -2763,6 +2808,7 @@ module Aws::OpsWorks
2763
2808
  :deployment_id,
2764
2809
  :instance_id,
2765
2810
  :command_ids)
2811
+ SENSITIVE = []
2766
2812
  include Aws::Structure
2767
2813
  end
2768
2814
 
@@ -2777,6 +2823,7 @@ module Aws::OpsWorks
2777
2823
  #
2778
2824
  class DescribeCommandsResult < Struct.new(
2779
2825
  :commands)
2826
+ SENSITIVE = []
2780
2827
  include Aws::Structure
2781
2828
  end
2782
2829
 
@@ -2812,6 +2859,7 @@ module Aws::OpsWorks
2812
2859
  :stack_id,
2813
2860
  :app_id,
2814
2861
  :deployment_ids)
2862
+ SENSITIVE = []
2815
2863
  include Aws::Structure
2816
2864
  end
2817
2865
 
@@ -2825,6 +2873,7 @@ module Aws::OpsWorks
2825
2873
  #
2826
2874
  class DescribeDeploymentsResult < Struct.new(
2827
2875
  :deployments)
2876
+ SENSITIVE = []
2828
2877
  include Aws::Structure
2829
2878
  end
2830
2879
 
@@ -2872,6 +2921,7 @@ module Aws::OpsWorks
2872
2921
  :stack_id,
2873
2922
  :next_token,
2874
2923
  :max_results)
2924
+ SENSITIVE = []
2875
2925
  include Aws::Structure
2876
2926
  end
2877
2927
 
@@ -2894,6 +2944,7 @@ module Aws::OpsWorks
2894
2944
  class DescribeEcsClustersResult < Struct.new(
2895
2945
  :ecs_clusters,
2896
2946
  :next_token)
2947
+ SENSITIVE = []
2897
2948
  include Aws::Structure
2898
2949
  end
2899
2950
 
@@ -2931,6 +2982,7 @@ module Aws::OpsWorks
2931
2982
  :instance_id,
2932
2983
  :stack_id,
2933
2984
  :ips)
2985
+ SENSITIVE = []
2934
2986
  include Aws::Structure
2935
2987
  end
2936
2988
 
@@ -2945,6 +2997,7 @@ module Aws::OpsWorks
2945
2997
  #
2946
2998
  class DescribeElasticIpsResult < Struct.new(
2947
2999
  :elastic_ips)
3000
+ SENSITIVE = []
2948
3001
  include Aws::Structure
2949
3002
  end
2950
3003
 
@@ -2971,6 +3024,7 @@ module Aws::OpsWorks
2971
3024
  class DescribeElasticLoadBalancersRequest < Struct.new(
2972
3025
  :stack_id,
2973
3026
  :layer_ids)
3027
+ SENSITIVE = []
2974
3028
  include Aws::Structure
2975
3029
  end
2976
3030
 
@@ -2985,6 +3039,7 @@ module Aws::OpsWorks
2985
3039
  #
2986
3040
  class DescribeElasticLoadBalancersResult < Struct.new(
2987
3041
  :elastic_load_balancers)
3042
+ SENSITIVE = []
2988
3043
  include Aws::Structure
2989
3044
  end
2990
3045
 
@@ -3019,6 +3074,7 @@ module Aws::OpsWorks
3019
3074
  :stack_id,
3020
3075
  :layer_id,
3021
3076
  :instance_ids)
3077
+ SENSITIVE = []
3022
3078
  include Aws::Structure
3023
3079
  end
3024
3080
 
@@ -3032,6 +3088,7 @@ module Aws::OpsWorks
3032
3088
  #
3033
3089
  class DescribeInstancesResult < Struct.new(
3034
3090
  :instances)
3091
+ SENSITIVE = []
3035
3092
  include Aws::Structure
3036
3093
  end
3037
3094
 
@@ -3058,6 +3115,7 @@ module Aws::OpsWorks
3058
3115
  class DescribeLayersRequest < Struct.new(
3059
3116
  :stack_id,
3060
3117
  :layer_ids)
3118
+ SENSITIVE = []
3061
3119
  include Aws::Structure
3062
3120
  end
3063
3121
 
@@ -3071,6 +3129,7 @@ module Aws::OpsWorks
3071
3129
  #
3072
3130
  class DescribeLayersResult < Struct.new(
3073
3131
  :layers)
3132
+ SENSITIVE = []
3074
3133
  include Aws::Structure
3075
3134
  end
3076
3135
 
@@ -3089,6 +3148,7 @@ module Aws::OpsWorks
3089
3148
  #
3090
3149
  class DescribeLoadBasedAutoScalingRequest < Struct.new(
3091
3150
  :layer_ids)
3151
+ SENSITIVE = []
3092
3152
  include Aws::Structure
3093
3153
  end
3094
3154
 
@@ -3103,6 +3163,7 @@ module Aws::OpsWorks
3103
3163
  #
3104
3164
  class DescribeLoadBasedAutoScalingResult < Struct.new(
3105
3165
  :load_based_auto_scaling_configurations)
3166
+ SENSITIVE = []
3106
3167
  include Aws::Structure
3107
3168
  end
3108
3169
 
@@ -3116,6 +3177,7 @@ module Aws::OpsWorks
3116
3177
  #
3117
3178
  class DescribeMyUserProfileResult < Struct.new(
3118
3179
  :user_profile)
3180
+ SENSITIVE = []
3119
3181
  include Aws::Structure
3120
3182
  end
3121
3183
 
@@ -3130,6 +3192,7 @@ module Aws::OpsWorks
3130
3192
  #
3131
3193
  class DescribeOperatingSystemsResponse < Struct.new(
3132
3194
  :operating_systems)
3195
+ SENSITIVE = []
3133
3196
  include Aws::Structure
3134
3197
  end
3135
3198
 
@@ -3159,6 +3222,7 @@ module Aws::OpsWorks
3159
3222
  class DescribePermissionsRequest < Struct.new(
3160
3223
  :iam_user_arn,
3161
3224
  :stack_id)
3225
+ SENSITIVE = []
3162
3226
  include Aws::Structure
3163
3227
  end
3164
3228
 
@@ -3185,6 +3249,7 @@ module Aws::OpsWorks
3185
3249
  #
3186
3250
  class DescribePermissionsResult < Struct.new(
3187
3251
  :permissions)
3252
+ SENSITIVE = []
3188
3253
  include Aws::Structure
3189
3254
  end
3190
3255
 
@@ -3219,6 +3284,7 @@ module Aws::OpsWorks
3219
3284
  :instance_id,
3220
3285
  :stack_id,
3221
3286
  :raid_array_ids)
3287
+ SENSITIVE = []
3222
3288
  include Aws::Structure
3223
3289
  end
3224
3290
 
@@ -3232,6 +3298,7 @@ module Aws::OpsWorks
3232
3298
  #
3233
3299
  class DescribeRaidArraysResult < Struct.new(
3234
3300
  :raid_arrays)
3301
+ SENSITIVE = []
3235
3302
  include Aws::Structure
3236
3303
  end
3237
3304
 
@@ -3258,6 +3325,7 @@ module Aws::OpsWorks
3258
3325
  class DescribeRdsDbInstancesRequest < Struct.new(
3259
3326
  :stack_id,
3260
3327
  :rds_db_instance_arns)
3328
+ SENSITIVE = []
3261
3329
  include Aws::Structure
3262
3330
  end
3263
3331
 
@@ -3271,6 +3339,7 @@ module Aws::OpsWorks
3271
3339
  #
3272
3340
  class DescribeRdsDbInstancesResult < Struct.new(
3273
3341
  :rds_db_instances)
3342
+ SENSITIVE = []
3274
3343
  include Aws::Structure
3275
3344
  end
3276
3345
 
@@ -3307,6 +3376,7 @@ module Aws::OpsWorks
3307
3376
  :stack_id,
3308
3377
  :instance_id,
3309
3378
  :service_error_ids)
3379
+ SENSITIVE = []
3310
3380
  include Aws::Structure
3311
3381
  end
3312
3382
 
@@ -3321,6 +3391,7 @@ module Aws::OpsWorks
3321
3391
  #
3322
3392
  class DescribeServiceErrorsResult < Struct.new(
3323
3393
  :service_errors)
3394
+ SENSITIVE = []
3324
3395
  include Aws::Structure
3325
3396
  end
3326
3397
 
@@ -3339,6 +3410,7 @@ module Aws::OpsWorks
3339
3410
  #
3340
3411
  class DescribeStackProvisioningParametersRequest < Struct.new(
3341
3412
  :stack_id)
3413
+ SENSITIVE = []
3342
3414
  include Aws::Structure
3343
3415
  end
3344
3416
 
@@ -3358,6 +3430,7 @@ module Aws::OpsWorks
3358
3430
  class DescribeStackProvisioningParametersResult < Struct.new(
3359
3431
  :agent_installer_url,
3360
3432
  :parameters)
3433
+ SENSITIVE = []
3361
3434
  include Aws::Structure
3362
3435
  end
3363
3436
 
@@ -3376,6 +3449,7 @@ module Aws::OpsWorks
3376
3449
  #
3377
3450
  class DescribeStackSummaryRequest < Struct.new(
3378
3451
  :stack_id)
3452
+ SENSITIVE = []
3379
3453
  include Aws::Structure
3380
3454
  end
3381
3455
 
@@ -3389,6 +3463,7 @@ module Aws::OpsWorks
3389
3463
  #
3390
3464
  class DescribeStackSummaryResult < Struct.new(
3391
3465
  :stack_summary)
3466
+ SENSITIVE = []
3392
3467
  include Aws::Structure
3393
3468
  end
3394
3469
 
@@ -3409,6 +3484,7 @@ module Aws::OpsWorks
3409
3484
  #
3410
3485
  class DescribeStacksRequest < Struct.new(
3411
3486
  :stack_ids)
3487
+ SENSITIVE = []
3412
3488
  include Aws::Structure
3413
3489
  end
3414
3490
 
@@ -3422,6 +3498,7 @@ module Aws::OpsWorks
3422
3498
  #
3423
3499
  class DescribeStacksResult < Struct.new(
3424
3500
  :stacks)
3501
+ SENSITIVE = []
3425
3502
  include Aws::Structure
3426
3503
  end
3427
3504
 
@@ -3440,6 +3517,7 @@ module Aws::OpsWorks
3440
3517
  #
3441
3518
  class DescribeTimeBasedAutoScalingRequest < Struct.new(
3442
3519
  :instance_ids)
3520
+ SENSITIVE = []
3443
3521
  include Aws::Structure
3444
3522
  end
3445
3523
 
@@ -3454,6 +3532,7 @@ module Aws::OpsWorks
3454
3532
  #
3455
3533
  class DescribeTimeBasedAutoScalingResult < Struct.new(
3456
3534
  :time_based_auto_scaling_configurations)
3535
+ SENSITIVE = []
3457
3536
  include Aws::Structure
3458
3537
  end
3459
3538
 
@@ -3473,6 +3552,7 @@ module Aws::OpsWorks
3473
3552
  #
3474
3553
  class DescribeUserProfilesRequest < Struct.new(
3475
3554
  :iam_user_arns)
3555
+ SENSITIVE = []
3476
3556
  include Aws::Structure
3477
3557
  end
3478
3558
 
@@ -3486,6 +3566,7 @@ module Aws::OpsWorks
3486
3566
  #
3487
3567
  class DescribeUserProfilesResult < Struct.new(
3488
3568
  :user_profiles)
3569
+ SENSITIVE = []
3489
3570
  include Aws::Structure
3490
3571
  end
3491
3572
 
@@ -3529,6 +3610,7 @@ module Aws::OpsWorks
3529
3610
  :stack_id,
3530
3611
  :raid_array_id,
3531
3612
  :volume_ids)
3613
+ SENSITIVE = []
3532
3614
  include Aws::Structure
3533
3615
  end
3534
3616
 
@@ -3542,6 +3624,7 @@ module Aws::OpsWorks
3542
3624
  #
3543
3625
  class DescribeVolumesResult < Struct.new(
3544
3626
  :volumes)
3627
+ SENSITIVE = []
3545
3628
  include Aws::Structure
3546
3629
  end
3547
3630
 
@@ -3567,6 +3650,7 @@ module Aws::OpsWorks
3567
3650
  class DetachElasticLoadBalancerRequest < Struct.new(
3568
3651
  :elastic_load_balancer_name,
3569
3652
  :layer_id)
3653
+ SENSITIVE = []
3570
3654
  include Aws::Structure
3571
3655
  end
3572
3656
 
@@ -3585,6 +3669,7 @@ module Aws::OpsWorks
3585
3669
  #
3586
3670
  class DisassociateElasticIpRequest < Struct.new(
3587
3671
  :elastic_ip)
3672
+ SENSITIVE = []
3588
3673
  include Aws::Structure
3589
3674
  end
3590
3675
 
@@ -3653,6 +3738,7 @@ module Aws::OpsWorks
3653
3738
  :volume_size,
3654
3739
  :volume_type,
3655
3740
  :delete_on_termination)
3741
+ SENSITIVE = []
3656
3742
  include Aws::Structure
3657
3743
  end
3658
3744
 
@@ -3681,6 +3767,7 @@ module Aws::OpsWorks
3681
3767
  :ecs_cluster_name,
3682
3768
  :stack_id,
3683
3769
  :registered_at)
3770
+ SENSITIVE = []
3684
3771
  include Aws::Structure
3685
3772
  end
3686
3773
 
@@ -3719,6 +3806,7 @@ module Aws::OpsWorks
3719
3806
  :domain,
3720
3807
  :region,
3721
3808
  :instance_id)
3809
+ SENSITIVE = []
3722
3810
  include Aws::Structure
3723
3811
  end
3724
3812
 
@@ -3773,6 +3861,7 @@ module Aws::OpsWorks
3773
3861
  :availability_zones,
3774
3862
  :subnet_ids,
3775
3863
  :ec2_instance_ids)
3864
+ SENSITIVE = []
3776
3865
  include Aws::Structure
3777
3866
  end
3778
3867
 
@@ -3814,6 +3903,7 @@ module Aws::OpsWorks
3814
3903
  :key,
3815
3904
  :value,
3816
3905
  :secure)
3906
+ SENSITIVE = []
3817
3907
  include Aws::Structure
3818
3908
  end
3819
3909
 
@@ -3832,6 +3922,7 @@ module Aws::OpsWorks
3832
3922
  #
3833
3923
  class GetHostnameSuggestionRequest < Struct.new(
3834
3924
  :layer_id)
3925
+ SENSITIVE = []
3835
3926
  include Aws::Structure
3836
3927
  end
3837
3928
 
@@ -3850,6 +3941,7 @@ module Aws::OpsWorks
3850
3941
  class GetHostnameSuggestionResult < Struct.new(
3851
3942
  :layer_id,
3852
3943
  :hostname)
3944
+ SENSITIVE = []
3853
3945
  include Aws::Structure
3854
3946
  end
3855
3947
 
@@ -3877,6 +3969,7 @@ module Aws::OpsWorks
3877
3969
  class GrantAccessRequest < Struct.new(
3878
3970
  :instance_id,
3879
3971
  :valid_for_in_minutes)
3972
+ SENSITIVE = []
3880
3973
  include Aws::Structure
3881
3974
  end
3882
3975
 
@@ -3892,6 +3985,7 @@ module Aws::OpsWorks
3892
3985
  #
3893
3986
  class GrantAccessResult < Struct.new(
3894
3987
  :temporary_credential)
3988
+ SENSITIVE = []
3895
3989
  include Aws::Structure
3896
3990
  end
3897
3991
 
@@ -4175,6 +4269,7 @@ module Aws::OpsWorks
4175
4269
  :subnet_id,
4176
4270
  :tenancy,
4177
4271
  :virtualization_type)
4272
+ SENSITIVE = []
4178
4273
  include Aws::Structure
4179
4274
  end
4180
4275
 
@@ -4208,6 +4303,7 @@ module Aws::OpsWorks
4208
4303
  class InstanceIdentity < Struct.new(
4209
4304
  :document,
4210
4305
  :signature)
4306
+ SENSITIVE = []
4211
4307
  include Aws::Structure
4212
4308
  end
4213
4309
 
@@ -4316,6 +4412,7 @@ module Aws::OpsWorks
4316
4412
  :terminated,
4317
4413
  :terminating,
4318
4414
  :unassigning)
4415
+ SENSITIVE = []
4319
4416
  include Aws::Structure
4320
4417
  end
4321
4418
 
@@ -4492,6 +4589,7 @@ module Aws::OpsWorks
4492
4589
  :install_updates_on_boot,
4493
4590
  :use_ebs_optimized_instances,
4494
4591
  :lifecycle_event_configuration)
4592
+ SENSITIVE = []
4495
4593
  include Aws::Structure
4496
4594
  end
4497
4595
 
@@ -4516,6 +4614,7 @@ module Aws::OpsWorks
4516
4614
  #
4517
4615
  class LifecycleEventConfiguration < Struct.new(
4518
4616
  :shutdown)
4617
+ SENSITIVE = []
4519
4618
  include Aws::Structure
4520
4619
  end
4521
4620
 
@@ -4548,6 +4647,7 @@ module Aws::OpsWorks
4548
4647
  :resource_arn,
4549
4648
  :max_results,
4550
4649
  :next_token)
4650
+ SENSITIVE = []
4551
4651
  include Aws::Structure
4552
4652
  end
4553
4653
 
@@ -4571,6 +4671,7 @@ module Aws::OpsWorks
4571
4671
  class ListTagsResult < Struct.new(
4572
4672
  :tags,
4573
4673
  :next_token)
4674
+ SENSITIVE = []
4574
4675
  include Aws::Structure
4575
4676
  end
4576
4677
 
@@ -4603,6 +4704,7 @@ module Aws::OpsWorks
4603
4704
  :enable,
4604
4705
  :up_scaling,
4605
4706
  :down_scaling)
4707
+ SENSITIVE = []
4606
4708
  include Aws::Structure
4607
4709
  end
4608
4710
 
@@ -4651,6 +4753,7 @@ module Aws::OpsWorks
4651
4753
  :reported_name,
4652
4754
  :reported_version,
4653
4755
  :supported)
4756
+ SENSITIVE = []
4654
4757
  include Aws::Structure
4655
4758
  end
4656
4759
 
@@ -4672,6 +4775,7 @@ module Aws::OpsWorks
4672
4775
  class OperatingSystemConfigurationManager < Struct.new(
4673
4776
  :name,
4674
4777
  :version)
4778
+ SENSITIVE = []
4675
4779
  include Aws::Structure
4676
4780
  end
4677
4781
 
@@ -4728,6 +4832,7 @@ module Aws::OpsWorks
4728
4832
  :allow_ssh,
4729
4833
  :allow_sudo,
4730
4834
  :level)
4835
+ SENSITIVE = []
4731
4836
  include Aws::Structure
4732
4837
  end
4733
4838
 
@@ -4810,6 +4915,7 @@ module Aws::OpsWorks
4810
4915
  :stack_id,
4811
4916
  :volume_type,
4812
4917
  :iops)
4918
+ SENSITIVE = []
4813
4919
  include Aws::Structure
4814
4920
  end
4815
4921
 
@@ -4867,6 +4973,7 @@ module Aws::OpsWorks
4867
4973
  :engine,
4868
4974
  :stack_id,
4869
4975
  :missing_on_rds)
4976
+ SENSITIVE = []
4870
4977
  include Aws::Structure
4871
4978
  end
4872
4979
 
@@ -4885,6 +4992,7 @@ module Aws::OpsWorks
4885
4992
  #
4886
4993
  class RebootInstanceRequest < Struct.new(
4887
4994
  :instance_id)
4995
+ SENSITIVE = []
4888
4996
  include Aws::Structure
4889
4997
  end
4890
4998
 
@@ -4946,6 +5054,7 @@ module Aws::OpsWorks
4946
5054
  :deploy,
4947
5055
  :undeploy,
4948
5056
  :shutdown)
5057
+ SENSITIVE = []
4949
5058
  include Aws::Structure
4950
5059
  end
4951
5060
 
@@ -4970,6 +5079,7 @@ module Aws::OpsWorks
4970
5079
  class RegisterEcsClusterRequest < Struct.new(
4971
5080
  :ecs_cluster_arn,
4972
5081
  :stack_id)
5082
+ SENSITIVE = []
4973
5083
  include Aws::Structure
4974
5084
  end
4975
5085
 
@@ -4983,6 +5093,7 @@ module Aws::OpsWorks
4983
5093
  #
4984
5094
  class RegisterEcsClusterResult < Struct.new(
4985
5095
  :ecs_cluster_arn)
5096
+ SENSITIVE = []
4986
5097
  include Aws::Structure
4987
5098
  end
4988
5099
 
@@ -5007,6 +5118,7 @@ module Aws::OpsWorks
5007
5118
  class RegisterElasticIpRequest < Struct.new(
5008
5119
  :elastic_ip,
5009
5120
  :stack_id)
5121
+ SENSITIVE = []
5010
5122
  include Aws::Structure
5011
5123
  end
5012
5124
 
@@ -5020,6 +5132,7 @@ module Aws::OpsWorks
5020
5132
  #
5021
5133
  class RegisterElasticIpResult < Struct.new(
5022
5134
  :elastic_ip)
5135
+ SENSITIVE = []
5023
5136
  include Aws::Structure
5024
5137
  end
5025
5138
 
@@ -5078,6 +5191,7 @@ module Aws::OpsWorks
5078
5191
  :rsa_public_key,
5079
5192
  :rsa_public_key_fingerprint,
5080
5193
  :instance_identity)
5194
+ SENSITIVE = []
5081
5195
  include Aws::Structure
5082
5196
  end
5083
5197
 
@@ -5091,6 +5205,7 @@ module Aws::OpsWorks
5091
5205
  #
5092
5206
  class RegisterInstanceResult < Struct.new(
5093
5207
  :instance_id)
5208
+ SENSITIVE = []
5094
5209
  include Aws::Structure
5095
5210
  end
5096
5211
 
@@ -5127,6 +5242,7 @@ module Aws::OpsWorks
5127
5242
  :rds_db_instance_arn,
5128
5243
  :db_user,
5129
5244
  :db_password)
5245
+ SENSITIVE = []
5130
5246
  include Aws::Structure
5131
5247
  end
5132
5248
 
@@ -5151,6 +5267,7 @@ module Aws::OpsWorks
5151
5267
  class RegisterVolumeRequest < Struct.new(
5152
5268
  :ec2_volume_id,
5153
5269
  :stack_id)
5270
+ SENSITIVE = []
5154
5271
  include Aws::Structure
5155
5272
  end
5156
5273
 
@@ -5164,6 +5281,7 @@ module Aws::OpsWorks
5164
5281
  #
5165
5282
  class RegisterVolumeResult < Struct.new(
5166
5283
  :volume_id)
5284
+ SENSITIVE = []
5167
5285
  include Aws::Structure
5168
5286
  end
5169
5287
 
@@ -5187,6 +5305,7 @@ module Aws::OpsWorks
5187
5305
  :family,
5188
5306
  :name,
5189
5307
  :version)
5308
+ SENSITIVE = []
5190
5309
  include Aws::Structure
5191
5310
  end
5192
5311
 
@@ -5200,6 +5319,7 @@ module Aws::OpsWorks
5200
5319
  #
5201
5320
  class ResourceNotFoundException < Struct.new(
5202
5321
  :message)
5322
+ SENSITIVE = []
5203
5323
  include Aws::Structure
5204
5324
  end
5205
5325
 
@@ -5228,6 +5348,7 @@ module Aws::OpsWorks
5228
5348
  :name,
5229
5349
  :ssh_username,
5230
5350
  :ssh_public_key)
5351
+ SENSITIVE = []
5231
5352
  include Aws::Structure
5232
5353
  end
5233
5354
 
@@ -5266,6 +5387,7 @@ module Aws::OpsWorks
5266
5387
  :type,
5267
5388
  :message,
5268
5389
  :created_at)
5390
+ SENSITIVE = []
5269
5391
  include Aws::Structure
5270
5392
  end
5271
5393
 
@@ -5324,6 +5446,7 @@ module Aws::OpsWorks
5324
5446
  :enable,
5325
5447
  :up_scaling,
5326
5448
  :down_scaling)
5449
+ SENSITIVE = []
5327
5450
  include Aws::Structure
5328
5451
  end
5329
5452
 
@@ -5384,6 +5507,7 @@ module Aws::OpsWorks
5384
5507
  :allow_ssh,
5385
5508
  :allow_sudo,
5386
5509
  :level)
5510
+ SENSITIVE = []
5387
5511
  include Aws::Structure
5388
5512
  end
5389
5513
 
@@ -5430,6 +5554,7 @@ module Aws::OpsWorks
5430
5554
  class SetTimeBasedAutoScalingRequest < Struct.new(
5431
5555
  :instance_id,
5432
5556
  :auto_scaling_schedule)
5557
+ SENSITIVE = []
5433
5558
  include Aws::Structure
5434
5559
  end
5435
5560
 
@@ -5462,6 +5587,7 @@ module Aws::OpsWorks
5462
5587
  class ShutdownEventConfiguration < Struct.new(
5463
5588
  :execution_timeout,
5464
5589
  :delay_until_elb_connections_drained)
5590
+ SENSITIVE = []
5465
5591
  include Aws::Structure
5466
5592
  end
5467
5593
 
@@ -5550,6 +5676,7 @@ module Aws::OpsWorks
5550
5676
  :password,
5551
5677
  :ssh_key,
5552
5678
  :revision)
5679
+ SENSITIVE = []
5553
5680
  include Aws::Structure
5554
5681
  end
5555
5682
 
@@ -5583,6 +5710,7 @@ module Aws::OpsWorks
5583
5710
  :certificate,
5584
5711
  :private_key,
5585
5712
  :chain)
5713
+ SENSITIVE = []
5586
5714
  include Aws::Structure
5587
5715
  end
5588
5716
 
@@ -5754,6 +5882,7 @@ module Aws::OpsWorks
5754
5882
  :created_at,
5755
5883
  :default_root_device_type,
5756
5884
  :agent_version)
5885
+ SENSITIVE = []
5757
5886
  include Aws::Structure
5758
5887
  end
5759
5888
 
@@ -5782,6 +5911,7 @@ module Aws::OpsWorks
5782
5911
  class StackConfigurationManager < Struct.new(
5783
5912
  :name,
5784
5913
  :version)
5914
+ SENSITIVE = []
5785
5915
  include Aws::Structure
5786
5916
  end
5787
5917
 
@@ -5821,6 +5951,7 @@ module Aws::OpsWorks
5821
5951
  :layers_count,
5822
5952
  :apps_count,
5823
5953
  :instances_count)
5954
+ SENSITIVE = []
5824
5955
  include Aws::Structure
5825
5956
  end
5826
5957
 
@@ -5839,6 +5970,7 @@ module Aws::OpsWorks
5839
5970
  #
5840
5971
  class StartInstanceRequest < Struct.new(
5841
5972
  :instance_id)
5973
+ SENSITIVE = []
5842
5974
  include Aws::Structure
5843
5975
  end
5844
5976
 
@@ -5857,6 +5989,7 @@ module Aws::OpsWorks
5857
5989
  #
5858
5990
  class StartStackRequest < Struct.new(
5859
5991
  :stack_id)
5992
+ SENSITIVE = []
5860
5993
  include Aws::Structure
5861
5994
  end
5862
5995
 
@@ -5887,6 +6020,7 @@ module Aws::OpsWorks
5887
6020
  class StopInstanceRequest < Struct.new(
5888
6021
  :instance_id,
5889
6022
  :force)
6023
+ SENSITIVE = []
5890
6024
  include Aws::Structure
5891
6025
  end
5892
6026
 
@@ -5905,6 +6039,7 @@ module Aws::OpsWorks
5905
6039
  #
5906
6040
  class StopStackRequest < Struct.new(
5907
6041
  :stack_id)
6042
+ SENSITIVE = []
5908
6043
  include Aws::Structure
5909
6044
  end
5910
6045
 
@@ -5947,6 +6082,7 @@ module Aws::OpsWorks
5947
6082
  class TagResourceRequest < Struct.new(
5948
6083
  :resource_arn,
5949
6084
  :tags)
6085
+ SENSITIVE = []
5950
6086
  include Aws::Structure
5951
6087
  end
5952
6088
 
@@ -5979,6 +6115,7 @@ module Aws::OpsWorks
5979
6115
  :password,
5980
6116
  :valid_for_in_minutes,
5981
6117
  :instance_id)
6118
+ SENSITIVE = []
5982
6119
  include Aws::Structure
5983
6120
  end
5984
6121
 
@@ -5997,6 +6134,7 @@ module Aws::OpsWorks
5997
6134
  class TimeBasedAutoScalingConfiguration < Struct.new(
5998
6135
  :instance_id,
5999
6136
  :auto_scaling_schedule)
6137
+ SENSITIVE = []
6000
6138
  include Aws::Structure
6001
6139
  end
6002
6140
 
@@ -6015,6 +6153,7 @@ module Aws::OpsWorks
6015
6153
  #
6016
6154
  class UnassignInstanceRequest < Struct.new(
6017
6155
  :instance_id)
6156
+ SENSITIVE = []
6018
6157
  include Aws::Structure
6019
6158
  end
6020
6159
 
@@ -6033,6 +6172,7 @@ module Aws::OpsWorks
6033
6172
  #
6034
6173
  class UnassignVolumeRequest < Struct.new(
6035
6174
  :volume_id)
6175
+ SENSITIVE = []
6036
6176
  include Aws::Structure
6037
6177
  end
6038
6178
 
@@ -6057,6 +6197,7 @@ module Aws::OpsWorks
6057
6197
  class UntagResourceRequest < Struct.new(
6058
6198
  :resource_arn,
6059
6199
  :tag_keys)
6200
+ SENSITIVE = []
6060
6201
  include Aws::Structure
6061
6202
  end
6062
6203
 
@@ -6181,6 +6322,7 @@ module Aws::OpsWorks
6181
6322
  :ssl_configuration,
6182
6323
  :attributes,
6183
6324
  :environment)
6325
+ SENSITIVE = []
6184
6326
  include Aws::Structure
6185
6327
  end
6186
6328
 
@@ -6205,6 +6347,7 @@ module Aws::OpsWorks
6205
6347
  class UpdateElasticIpRequest < Struct.new(
6206
6348
  :elastic_ip,
6207
6349
  :name)
6350
+ SENSITIVE = []
6208
6351
  include Aws::Structure
6209
6352
  end
6210
6353
 
@@ -6377,6 +6520,7 @@ module Aws::OpsWorks
6377
6520
  :install_updates_on_boot,
6378
6521
  :ebs_optimized,
6379
6522
  :agent_version)
6523
+ SENSITIVE = []
6380
6524
  include Aws::Structure
6381
6525
  end
6382
6526
 
@@ -6581,6 +6725,7 @@ module Aws::OpsWorks
6581
6725
  :install_updates_on_boot,
6582
6726
  :use_ebs_optimized_instances,
6583
6727
  :lifecycle_event_configuration)
6728
+ SENSITIVE = []
6584
6729
  include Aws::Structure
6585
6730
  end
6586
6731
 
@@ -6599,6 +6744,7 @@ module Aws::OpsWorks
6599
6744
  #
6600
6745
  class UpdateMyUserProfileRequest < Struct.new(
6601
6746
  :ssh_public_key)
6747
+ SENSITIVE = []
6602
6748
  include Aws::Structure
6603
6749
  end
6604
6750
 
@@ -6629,6 +6775,7 @@ module Aws::OpsWorks
6629
6775
  :rds_db_instance_arn,
6630
6776
  :db_user,
6631
6777
  :db_password)
6778
+ SENSITIVE = []
6632
6779
  include Aws::Structure
6633
6780
  end
6634
6781
 
@@ -6940,6 +7087,7 @@ module Aws::OpsWorks
6940
7087
  :default_root_device_type,
6941
7088
  :use_opsworks_security_groups,
6942
7089
  :agent_version)
7090
+ SENSITIVE = []
6943
7091
  include Aws::Structure
6944
7092
  end
6945
7093
 
@@ -6987,6 +7135,7 @@ module Aws::OpsWorks
6987
7135
  :ssh_username,
6988
7136
  :ssh_public_key,
6989
7137
  :allow_self_management)
7138
+ SENSITIVE = []
6990
7139
  include Aws::Structure
6991
7140
  end
6992
7141
 
@@ -7017,6 +7166,7 @@ module Aws::OpsWorks
7017
7166
  :volume_id,
7018
7167
  :name,
7019
7168
  :mount_point)
7169
+ SENSITIVE = []
7020
7170
  include Aws::Structure
7021
7171
  end
7022
7172
 
@@ -7056,6 +7206,7 @@ module Aws::OpsWorks
7056
7206
  :ssh_username,
7057
7207
  :ssh_public_key,
7058
7208
  :allow_self_management)
7209
+ SENSITIVE = []
7059
7210
  include Aws::Structure
7060
7211
  end
7061
7212
 
@@ -7069,6 +7220,7 @@ module Aws::OpsWorks
7069
7220
  #
7070
7221
  class ValidationException < Struct.new(
7071
7222
  :message)
7223
+ SENSITIVE = []
7072
7224
  include Aws::Structure
7073
7225
  end
7074
7226
 
@@ -7187,6 +7339,7 @@ module Aws::OpsWorks
7187
7339
  :volume_type,
7188
7340
  :iops,
7189
7341
  :encrypted)
7342
+ SENSITIVE = []
7190
7343
  include Aws::Structure
7191
7344
  end
7192
7345
 
@@ -7273,6 +7426,7 @@ module Aws::OpsWorks
7273
7426
  :volume_type,
7274
7427
  :iops,
7275
7428
  :encrypted)
7429
+ SENSITIVE = []
7276
7430
  include Aws::Structure
7277
7431
  end
7278
7432
 
@@ -7361,6 +7515,7 @@ module Aws::OpsWorks
7361
7515
  :friday,
7362
7516
  :saturday,
7363
7517
  :sunday)
7518
+ SENSITIVE = []
7364
7519
  include Aws::Structure
7365
7520
  end
7366
7521