aws-sdk-imagebuilder 1.5.0 → 1.11.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-imagebuilder.rb +3 -1
- data/lib/aws-sdk-imagebuilder/client.rb +51 -8
- data/lib/aws-sdk-imagebuilder/client_api.rb +33 -2
- data/lib/aws-sdk-imagebuilder/errors.rb +18 -0
- data/lib/aws-sdk-imagebuilder/resource.rb +2 -0
- data/lib/aws-sdk-imagebuilder/types.rb +228 -5
- metadata +4 -4
@@ -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:
|
@@ -40,6 +42,7 @@ module Aws::Imagebuilder
|
|
40
42
|
# * {ResourceInUseException}
|
41
43
|
# * {ResourceNotFoundException}
|
42
44
|
# * {ServiceException}
|
45
|
+
# * {ServiceQuotaExceededException}
|
43
46
|
# * {ServiceUnavailableException}
|
44
47
|
#
|
45
48
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -273,6 +276,21 @@ module Aws::Imagebuilder
|
|
273
276
|
end
|
274
277
|
end
|
275
278
|
|
279
|
+
class ServiceQuotaExceededException < ServiceError
|
280
|
+
|
281
|
+
# @param [Seahorse::Client::RequestContext] context
|
282
|
+
# @param [String] message
|
283
|
+
# @param [Aws::Imagebuilder::Types::ServiceQuotaExceededException] data
|
284
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
285
|
+
super(context, message, data)
|
286
|
+
end
|
287
|
+
|
288
|
+
# @return [String]
|
289
|
+
def message
|
290
|
+
@message || @data[:message]
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
276
294
|
class ServiceUnavailableException < ServiceError
|
277
295
|
|
278
296
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -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:
|
@@ -38,6 +40,7 @@ module Aws::Imagebuilder
|
|
38
40
|
:name,
|
39
41
|
:description,
|
40
42
|
:state)
|
43
|
+
SENSITIVE = []
|
41
44
|
include Aws::Structure
|
42
45
|
end
|
43
46
|
|
@@ -52,6 +55,7 @@ module Aws::Imagebuilder
|
|
52
55
|
# ami_tags: {
|
53
56
|
# "TagKey" => "TagValue",
|
54
57
|
# },
|
58
|
+
# kms_key_id: "NonEmptyString",
|
55
59
|
# launch_permission: {
|
56
60
|
# user_ids: ["NonEmptyString"],
|
57
61
|
# user_groups: ["NonEmptyString"],
|
@@ -70,6 +74,10 @@ module Aws::Imagebuilder
|
|
70
74
|
# The tags to apply to AMIs distributed to this Region.
|
71
75
|
# @return [Hash<String,String>]
|
72
76
|
#
|
77
|
+
# @!attribute [rw] kms_key_id
|
78
|
+
# The KMS key identifier used to encrypt the distributed image.
|
79
|
+
# @return [String]
|
80
|
+
#
|
73
81
|
# @!attribute [rw] launch_permission
|
74
82
|
# Launch permissions can be used to configure which AWS accounts can
|
75
83
|
# use the AMI to launch instances.
|
@@ -81,7 +89,9 @@ module Aws::Imagebuilder
|
|
81
89
|
:name,
|
82
90
|
:description,
|
83
91
|
:ami_tags,
|
92
|
+
:kms_key_id,
|
84
93
|
:launch_permission)
|
94
|
+
SENSITIVE = []
|
85
95
|
include Aws::Structure
|
86
96
|
end
|
87
97
|
|
@@ -95,6 +105,7 @@ module Aws::Imagebuilder
|
|
95
105
|
#
|
96
106
|
class CallRateLimitExceededException < Struct.new(
|
97
107
|
:message)
|
108
|
+
SENSITIVE = []
|
98
109
|
include Aws::Structure
|
99
110
|
end
|
100
111
|
|
@@ -123,6 +134,7 @@ module Aws::Imagebuilder
|
|
123
134
|
class CancelImageCreationRequest < Struct.new(
|
124
135
|
:image_build_version_arn,
|
125
136
|
:client_token)
|
137
|
+
SENSITIVE = []
|
126
138
|
include Aws::Structure
|
127
139
|
end
|
128
140
|
|
@@ -145,6 +157,7 @@ module Aws::Imagebuilder
|
|
145
157
|
:request_id,
|
146
158
|
:client_token,
|
147
159
|
:image_build_version_arn)
|
160
|
+
SENSITIVE = []
|
148
161
|
include Aws::Structure
|
149
162
|
end
|
150
163
|
|
@@ -160,6 +173,7 @@ module Aws::Imagebuilder
|
|
160
173
|
#
|
161
174
|
class ClientException < Struct.new(
|
162
175
|
:message)
|
176
|
+
SENSITIVE = []
|
163
177
|
include Aws::Structure
|
164
178
|
end
|
165
179
|
|
@@ -194,6 +208,12 @@ module Aws::Imagebuilder
|
|
194
208
|
# The platform of the component.
|
195
209
|
# @return [String]
|
196
210
|
#
|
211
|
+
# @!attribute [rw] supported_os_versions
|
212
|
+
# The operating system (OS) version supported by the component. If the
|
213
|
+
# OS information is available, a prefix match is performed against the
|
214
|
+
# parent image OS version during image recipe creation.
|
215
|
+
# @return [Array<String>]
|
216
|
+
#
|
197
217
|
# @!attribute [rw] owner
|
198
218
|
# The owner of the component.
|
199
219
|
# @return [String]
|
@@ -228,12 +248,14 @@ module Aws::Imagebuilder
|
|
228
248
|
:change_description,
|
229
249
|
:type,
|
230
250
|
:platform,
|
251
|
+
:supported_os_versions,
|
231
252
|
:owner,
|
232
253
|
:data,
|
233
254
|
:kms_key_id,
|
234
255
|
:encrypted,
|
235
256
|
:date_created,
|
236
257
|
:tags)
|
258
|
+
SENSITIVE = []
|
237
259
|
include Aws::Structure
|
238
260
|
end
|
239
261
|
|
@@ -254,6 +276,7 @@ module Aws::Imagebuilder
|
|
254
276
|
#
|
255
277
|
class ComponentConfiguration < Struct.new(
|
256
278
|
:component_arn)
|
279
|
+
SENSITIVE = []
|
257
280
|
include Aws::Structure
|
258
281
|
end
|
259
282
|
|
@@ -275,6 +298,12 @@ module Aws::Imagebuilder
|
|
275
298
|
# The platform of the component.
|
276
299
|
# @return [String]
|
277
300
|
#
|
301
|
+
# @!attribute [rw] supported_os_versions
|
302
|
+
# The operating system (OS) version supported by the component. If the
|
303
|
+
# OS information is available, a prefix match is performed against the
|
304
|
+
# parent image OS version during image recipe creation.
|
305
|
+
# @return [Array<String>]
|
306
|
+
#
|
278
307
|
# @!attribute [rw] type
|
279
308
|
# The type of the component denotes whether the component is used to
|
280
309
|
# build the image or only to test it.
|
@@ -307,12 +336,14 @@ module Aws::Imagebuilder
|
|
307
336
|
:name,
|
308
337
|
:version,
|
309
338
|
:platform,
|
339
|
+
:supported_os_versions,
|
310
340
|
:type,
|
311
341
|
:owner,
|
312
342
|
:description,
|
313
343
|
:change_description,
|
314
344
|
:date_created,
|
315
345
|
:tags)
|
346
|
+
SENSITIVE = []
|
316
347
|
include Aws::Structure
|
317
348
|
end
|
318
349
|
|
@@ -338,6 +369,12 @@ module Aws::Imagebuilder
|
|
338
369
|
# The platform of the component.
|
339
370
|
# @return [String]
|
340
371
|
#
|
372
|
+
# @!attribute [rw] supported_os_versions
|
373
|
+
# The operating system (OS) version supported by the component. If the
|
374
|
+
# OS information is available, a prefix match is performed against the
|
375
|
+
# parent image OS version during image recipe creation.
|
376
|
+
# @return [Array<String>]
|
377
|
+
#
|
341
378
|
# @!attribute [rw] type
|
342
379
|
# The type of the component denotes whether the component is used to
|
343
380
|
# build the image or only to test it.
|
@@ -359,9 +396,11 @@ module Aws::Imagebuilder
|
|
359
396
|
:version,
|
360
397
|
:description,
|
361
398
|
:platform,
|
399
|
+
:supported_os_versions,
|
362
400
|
:type,
|
363
401
|
:owner,
|
364
402
|
:date_created)
|
403
|
+
SENSITIVE = []
|
365
404
|
include Aws::Structure
|
366
405
|
end
|
367
406
|
|
@@ -374,6 +413,7 @@ module Aws::Imagebuilder
|
|
374
413
|
# description: "NonEmptyString",
|
375
414
|
# change_description: "NonEmptyString",
|
376
415
|
# platform: "Windows", # required, accepts Windows, Linux
|
416
|
+
# supported_os_versions: ["OsVersion"],
|
377
417
|
# data: "InlineComponentData",
|
378
418
|
# uri: "Uri",
|
379
419
|
# kms_key_id: "NonEmptyString",
|
@@ -408,6 +448,12 @@ module Aws::Imagebuilder
|
|
408
448
|
# The platform of the component.
|
409
449
|
# @return [String]
|
410
450
|
#
|
451
|
+
# @!attribute [rw] supported_os_versions
|
452
|
+
# The operating system (OS) version supported by the component. If the
|
453
|
+
# OS information is available, a prefix match is performed against the
|
454
|
+
# parent image OS version during image recipe creation.
|
455
|
+
# @return [Array<String>]
|
456
|
+
#
|
411
457
|
# @!attribute [rw] data
|
412
458
|
# The data of the component. Used to specify the data inline. Either
|
413
459
|
# `data` or `uri` can be used to specify the data within the
|
@@ -444,11 +490,13 @@ module Aws::Imagebuilder
|
|
444
490
|
:description,
|
445
491
|
:change_description,
|
446
492
|
:platform,
|
493
|
+
:supported_os_versions,
|
447
494
|
:data,
|
448
495
|
:uri,
|
449
496
|
:kms_key_id,
|
450
497
|
:tags,
|
451
498
|
:client_token)
|
499
|
+
SENSITIVE = []
|
452
500
|
include Aws::Structure
|
453
501
|
end
|
454
502
|
|
@@ -471,6 +519,7 @@ module Aws::Imagebuilder
|
|
471
519
|
:request_id,
|
472
520
|
:client_token,
|
473
521
|
:component_build_version_arn)
|
522
|
+
SENSITIVE = []
|
474
523
|
include Aws::Structure
|
475
524
|
end
|
476
525
|
|
@@ -489,6 +538,7 @@ module Aws::Imagebuilder
|
|
489
538
|
# ami_tags: {
|
490
539
|
# "TagKey" => "TagValue",
|
491
540
|
# },
|
541
|
+
# kms_key_id: "NonEmptyString",
|
492
542
|
# launch_permission: {
|
493
543
|
# user_ids: ["NonEmptyString"],
|
494
544
|
# user_groups: ["NonEmptyString"],
|
@@ -534,6 +584,7 @@ module Aws::Imagebuilder
|
|
534
584
|
:distributions,
|
535
585
|
:tags,
|
536
586
|
:client_token)
|
587
|
+
SENSITIVE = []
|
537
588
|
include Aws::Structure
|
538
589
|
end
|
539
590
|
|
@@ -556,6 +607,7 @@ module Aws::Imagebuilder
|
|
556
607
|
:request_id,
|
557
608
|
:client_token,
|
558
609
|
:distribution_configuration_arn)
|
610
|
+
SENSITIVE = []
|
559
611
|
include Aws::Structure
|
560
612
|
end
|
561
613
|
|
@@ -652,6 +704,7 @@ module Aws::Imagebuilder
|
|
652
704
|
:status,
|
653
705
|
:tags,
|
654
706
|
:client_token)
|
707
|
+
SENSITIVE = []
|
655
708
|
include Aws::Structure
|
656
709
|
end
|
657
710
|
|
@@ -674,6 +727,7 @@ module Aws::Imagebuilder
|
|
674
727
|
:request_id,
|
675
728
|
:client_token,
|
676
729
|
:image_pipeline_arn)
|
730
|
+
SENSITIVE = []
|
677
731
|
include Aws::Structure
|
678
732
|
end
|
679
733
|
|
@@ -709,6 +763,7 @@ module Aws::Imagebuilder
|
|
709
763
|
# tags: {
|
710
764
|
# "TagKey" => "TagValue",
|
711
765
|
# },
|
766
|
+
# working_directory: "NonEmptyString",
|
712
767
|
# client_token: "ClientToken", # required
|
713
768
|
# }
|
714
769
|
#
|
@@ -749,6 +804,10 @@ module Aws::Imagebuilder
|
|
749
804
|
# The tags of the image recipe.
|
750
805
|
# @return [Hash<String,String>]
|
751
806
|
#
|
807
|
+
# @!attribute [rw] working_directory
|
808
|
+
# The working directory to be used during build and test workflows.
|
809
|
+
# @return [String]
|
810
|
+
#
|
752
811
|
# @!attribute [rw] client_token
|
753
812
|
# The idempotency token used to make this request idempotent.
|
754
813
|
#
|
@@ -766,7 +825,9 @@ module Aws::Imagebuilder
|
|
766
825
|
:parent_image,
|
767
826
|
:block_device_mappings,
|
768
827
|
:tags,
|
828
|
+
:working_directory,
|
769
829
|
:client_token)
|
830
|
+
SENSITIVE = []
|
770
831
|
include Aws::Structure
|
771
832
|
end
|
772
833
|
|
@@ -789,6 +850,7 @@ module Aws::Imagebuilder
|
|
789
850
|
:request_id,
|
790
851
|
:client_token,
|
791
852
|
:image_recipe_arn)
|
853
|
+
SENSITIVE = []
|
792
854
|
include Aws::Structure
|
793
855
|
end
|
794
856
|
|
@@ -858,6 +920,7 @@ module Aws::Imagebuilder
|
|
858
920
|
:enhanced_image_metadata_enabled,
|
859
921
|
:tags,
|
860
922
|
:client_token)
|
923
|
+
SENSITIVE = []
|
861
924
|
include Aws::Structure
|
862
925
|
end
|
863
926
|
|
@@ -880,6 +943,7 @@ module Aws::Imagebuilder
|
|
880
943
|
:request_id,
|
881
944
|
:client_token,
|
882
945
|
:image_build_version_arn)
|
946
|
+
SENSITIVE = []
|
883
947
|
include Aws::Structure
|
884
948
|
end
|
885
949
|
|
@@ -902,6 +966,9 @@ module Aws::Imagebuilder
|
|
902
966
|
# key_pair: "NonEmptyString",
|
903
967
|
# terminate_instance_on_failure: false,
|
904
968
|
# sns_topic_arn: "SnsTopicArn",
|
969
|
+
# resource_tags: {
|
970
|
+
# "TagKey" => "TagValue",
|
971
|
+
# },
|
905
972
|
# tags: {
|
906
973
|
# "TagKey" => "TagValue",
|
907
974
|
# },
|
@@ -957,6 +1024,10 @@ module Aws::Imagebuilder
|
|
957
1024
|
# The SNS topic on which to send image build events.
|
958
1025
|
# @return [String]
|
959
1026
|
#
|
1027
|
+
# @!attribute [rw] resource_tags
|
1028
|
+
# The tags attached to the resource created by Image Builder.
|
1029
|
+
# @return [Hash<String,String>]
|
1030
|
+
#
|
960
1031
|
# @!attribute [rw] tags
|
961
1032
|
# The tags of the infrastructure configuration.
|
962
1033
|
# @return [Hash<String,String>]
|
@@ -981,8 +1052,10 @@ module Aws::Imagebuilder
|
|
981
1052
|
:key_pair,
|
982
1053
|
:terminate_instance_on_failure,
|
983
1054
|
:sns_topic_arn,
|
1055
|
+
:resource_tags,
|
984
1056
|
:tags,
|
985
1057
|
:client_token)
|
1058
|
+
SENSITIVE = []
|
986
1059
|
include Aws::Structure
|
987
1060
|
end
|
988
1061
|
|
@@ -1005,6 +1078,7 @@ module Aws::Imagebuilder
|
|
1005
1078
|
:request_id,
|
1006
1079
|
:client_token,
|
1007
1080
|
:infrastructure_configuration_arn)
|
1081
|
+
SENSITIVE = []
|
1008
1082
|
include Aws::Structure
|
1009
1083
|
end
|
1010
1084
|
|
@@ -1024,6 +1098,7 @@ module Aws::Imagebuilder
|
|
1024
1098
|
#
|
1025
1099
|
class DeleteComponentRequest < Struct.new(
|
1026
1100
|
:component_build_version_arn)
|
1101
|
+
SENSITIVE = []
|
1027
1102
|
include Aws::Structure
|
1028
1103
|
end
|
1029
1104
|
|
@@ -1041,6 +1116,7 @@ module Aws::Imagebuilder
|
|
1041
1116
|
class DeleteComponentResponse < Struct.new(
|
1042
1117
|
:request_id,
|
1043
1118
|
:component_build_version_arn)
|
1119
|
+
SENSITIVE = []
|
1044
1120
|
include Aws::Structure
|
1045
1121
|
end
|
1046
1122
|
|
@@ -1060,6 +1136,7 @@ module Aws::Imagebuilder
|
|
1060
1136
|
#
|
1061
1137
|
class DeleteDistributionConfigurationRequest < Struct.new(
|
1062
1138
|
:distribution_configuration_arn)
|
1139
|
+
SENSITIVE = []
|
1063
1140
|
include Aws::Structure
|
1064
1141
|
end
|
1065
1142
|
|
@@ -1077,6 +1154,7 @@ module Aws::Imagebuilder
|
|
1077
1154
|
class DeleteDistributionConfigurationResponse < Struct.new(
|
1078
1155
|
:request_id,
|
1079
1156
|
:distribution_configuration_arn)
|
1157
|
+
SENSITIVE = []
|
1080
1158
|
include Aws::Structure
|
1081
1159
|
end
|
1082
1160
|
|
@@ -1095,6 +1173,7 @@ module Aws::Imagebuilder
|
|
1095
1173
|
#
|
1096
1174
|
class DeleteImagePipelineRequest < Struct.new(
|
1097
1175
|
:image_pipeline_arn)
|
1176
|
+
SENSITIVE = []
|
1098
1177
|
include Aws::Structure
|
1099
1178
|
end
|
1100
1179
|
|
@@ -1112,6 +1191,7 @@ module Aws::Imagebuilder
|
|
1112
1191
|
class DeleteImagePipelineResponse < Struct.new(
|
1113
1192
|
:request_id,
|
1114
1193
|
:image_pipeline_arn)
|
1194
|
+
SENSITIVE = []
|
1115
1195
|
include Aws::Structure
|
1116
1196
|
end
|
1117
1197
|
|
@@ -1130,6 +1210,7 @@ module Aws::Imagebuilder
|
|
1130
1210
|
#
|
1131
1211
|
class DeleteImageRecipeRequest < Struct.new(
|
1132
1212
|
:image_recipe_arn)
|
1213
|
+
SENSITIVE = []
|
1133
1214
|
include Aws::Structure
|
1134
1215
|
end
|
1135
1216
|
|
@@ -1146,6 +1227,7 @@ module Aws::Imagebuilder
|
|
1146
1227
|
class DeleteImageRecipeResponse < Struct.new(
|
1147
1228
|
:request_id,
|
1148
1229
|
:image_recipe_arn)
|
1230
|
+
SENSITIVE = []
|
1149
1231
|
include Aws::Structure
|
1150
1232
|
end
|
1151
1233
|
|
@@ -1164,6 +1246,7 @@ module Aws::Imagebuilder
|
|
1164
1246
|
#
|
1165
1247
|
class DeleteImageRequest < Struct.new(
|
1166
1248
|
:image_build_version_arn)
|
1249
|
+
SENSITIVE = []
|
1167
1250
|
include Aws::Structure
|
1168
1251
|
end
|
1169
1252
|
|
@@ -1180,6 +1263,7 @@ module Aws::Imagebuilder
|
|
1180
1263
|
class DeleteImageResponse < Struct.new(
|
1181
1264
|
:request_id,
|
1182
1265
|
:image_build_version_arn)
|
1266
|
+
SENSITIVE = []
|
1183
1267
|
include Aws::Structure
|
1184
1268
|
end
|
1185
1269
|
|
@@ -1199,6 +1283,7 @@ module Aws::Imagebuilder
|
|
1199
1283
|
#
|
1200
1284
|
class DeleteInfrastructureConfigurationRequest < Struct.new(
|
1201
1285
|
:infrastructure_configuration_arn)
|
1286
|
+
SENSITIVE = []
|
1202
1287
|
include Aws::Structure
|
1203
1288
|
end
|
1204
1289
|
|
@@ -1216,6 +1301,7 @@ module Aws::Imagebuilder
|
|
1216
1301
|
class DeleteInfrastructureConfigurationResponse < Struct.new(
|
1217
1302
|
:request_id,
|
1218
1303
|
:infrastructure_configuration_arn)
|
1304
|
+
SENSITIVE = []
|
1219
1305
|
include Aws::Structure
|
1220
1306
|
end
|
1221
1307
|
|
@@ -1232,6 +1318,7 @@ module Aws::Imagebuilder
|
|
1232
1318
|
# ami_tags: {
|
1233
1319
|
# "TagKey" => "TagValue",
|
1234
1320
|
# },
|
1321
|
+
# kms_key_id: "NonEmptyString",
|
1235
1322
|
# launch_permission: {
|
1236
1323
|
# user_ids: ["NonEmptyString"],
|
1237
1324
|
# user_groups: ["NonEmptyString"],
|
@@ -1260,6 +1347,7 @@ module Aws::Imagebuilder
|
|
1260
1347
|
:region,
|
1261
1348
|
:ami_distribution_configuration,
|
1262
1349
|
:license_configuration_arns)
|
1350
|
+
SENSITIVE = []
|
1263
1351
|
include Aws::Structure
|
1264
1352
|
end
|
1265
1353
|
|
@@ -1308,6 +1396,7 @@ module Aws::Imagebuilder
|
|
1308
1396
|
:date_created,
|
1309
1397
|
:date_updated,
|
1310
1398
|
:tags)
|
1399
|
+
SENSITIVE = []
|
1311
1400
|
include Aws::Structure
|
1312
1401
|
end
|
1313
1402
|
|
@@ -1346,6 +1435,7 @@ module Aws::Imagebuilder
|
|
1346
1435
|
:date_created,
|
1347
1436
|
:date_updated,
|
1348
1437
|
:tags)
|
1438
|
+
SENSITIVE = []
|
1349
1439
|
include Aws::Structure
|
1350
1440
|
end
|
1351
1441
|
|
@@ -1402,6 +1492,7 @@ module Aws::Imagebuilder
|
|
1402
1492
|
:snapshot_id,
|
1403
1493
|
:volume_size,
|
1404
1494
|
:volume_type)
|
1495
|
+
SENSITIVE = []
|
1405
1496
|
include Aws::Structure
|
1406
1497
|
end
|
1407
1498
|
|
@@ -1431,6 +1522,7 @@ module Aws::Imagebuilder
|
|
1431
1522
|
class Filter < Struct.new(
|
1432
1523
|
:name,
|
1433
1524
|
:values)
|
1525
|
+
SENSITIVE = []
|
1434
1526
|
include Aws::Structure
|
1435
1527
|
end
|
1436
1528
|
|
@@ -1443,6 +1535,7 @@ module Aws::Imagebuilder
|
|
1443
1535
|
#
|
1444
1536
|
class ForbiddenException < Struct.new(
|
1445
1537
|
:message)
|
1538
|
+
SENSITIVE = []
|
1446
1539
|
include Aws::Structure
|
1447
1540
|
end
|
1448
1541
|
|
@@ -1462,6 +1555,7 @@ module Aws::Imagebuilder
|
|
1462
1555
|
#
|
1463
1556
|
class GetComponentPolicyRequest < Struct.new(
|
1464
1557
|
:component_arn)
|
1558
|
+
SENSITIVE = []
|
1465
1559
|
include Aws::Structure
|
1466
1560
|
end
|
1467
1561
|
|
@@ -1478,6 +1572,7 @@ module Aws::Imagebuilder
|
|
1478
1572
|
class GetComponentPolicyResponse < Struct.new(
|
1479
1573
|
:request_id,
|
1480
1574
|
:policy)
|
1575
|
+
SENSITIVE = []
|
1481
1576
|
include Aws::Structure
|
1482
1577
|
end
|
1483
1578
|
|
@@ -1485,7 +1580,7 @@ module Aws::Imagebuilder
|
|
1485
1580
|
# data as a hash:
|
1486
1581
|
#
|
1487
1582
|
# {
|
1488
|
-
# component_build_version_arn: "
|
1583
|
+
# component_build_version_arn: "ComponentVersionArnOrBuildVersionArn", # required
|
1489
1584
|
# }
|
1490
1585
|
#
|
1491
1586
|
# @!attribute [rw] component_build_version_arn
|
@@ -1497,6 +1592,7 @@ module Aws::Imagebuilder
|
|
1497
1592
|
#
|
1498
1593
|
class GetComponentRequest < Struct.new(
|
1499
1594
|
:component_build_version_arn)
|
1595
|
+
SENSITIVE = []
|
1500
1596
|
include Aws::Structure
|
1501
1597
|
end
|
1502
1598
|
|
@@ -1513,6 +1609,7 @@ module Aws::Imagebuilder
|
|
1513
1609
|
class GetComponentResponse < Struct.new(
|
1514
1610
|
:request_id,
|
1515
1611
|
:component)
|
1612
|
+
SENSITIVE = []
|
1516
1613
|
include Aws::Structure
|
1517
1614
|
end
|
1518
1615
|
|
@@ -1532,6 +1629,7 @@ module Aws::Imagebuilder
|
|
1532
1629
|
#
|
1533
1630
|
class GetDistributionConfigurationRequest < Struct.new(
|
1534
1631
|
:distribution_configuration_arn)
|
1632
|
+
SENSITIVE = []
|
1535
1633
|
include Aws::Structure
|
1536
1634
|
end
|
1537
1635
|
|
@@ -1548,6 +1646,7 @@ module Aws::Imagebuilder
|
|
1548
1646
|
class GetDistributionConfigurationResponse < Struct.new(
|
1549
1647
|
:request_id,
|
1550
1648
|
:distribution_configuration)
|
1649
|
+
SENSITIVE = []
|
1551
1650
|
include Aws::Structure
|
1552
1651
|
end
|
1553
1652
|
|
@@ -1567,6 +1666,7 @@ module Aws::Imagebuilder
|
|
1567
1666
|
#
|
1568
1667
|
class GetImagePipelineRequest < Struct.new(
|
1569
1668
|
:image_pipeline_arn)
|
1669
|
+
SENSITIVE = []
|
1570
1670
|
include Aws::Structure
|
1571
1671
|
end
|
1572
1672
|
|
@@ -1583,6 +1683,7 @@ module Aws::Imagebuilder
|
|
1583
1683
|
class GetImagePipelineResponse < Struct.new(
|
1584
1684
|
:request_id,
|
1585
1685
|
:image_pipeline)
|
1686
|
+
SENSITIVE = []
|
1586
1687
|
include Aws::Structure
|
1587
1688
|
end
|
1588
1689
|
|
@@ -1602,6 +1703,7 @@ module Aws::Imagebuilder
|
|
1602
1703
|
#
|
1603
1704
|
class GetImagePolicyRequest < Struct.new(
|
1604
1705
|
:image_arn)
|
1706
|
+
SENSITIVE = []
|
1605
1707
|
include Aws::Structure
|
1606
1708
|
end
|
1607
1709
|
|
@@ -1618,6 +1720,7 @@ module Aws::Imagebuilder
|
|
1618
1720
|
class GetImagePolicyResponse < Struct.new(
|
1619
1721
|
:request_id,
|
1620
1722
|
:policy)
|
1723
|
+
SENSITIVE = []
|
1621
1724
|
include Aws::Structure
|
1622
1725
|
end
|
1623
1726
|
|
@@ -1637,6 +1740,7 @@ module Aws::Imagebuilder
|
|
1637
1740
|
#
|
1638
1741
|
class GetImageRecipePolicyRequest < Struct.new(
|
1639
1742
|
:image_recipe_arn)
|
1743
|
+
SENSITIVE = []
|
1640
1744
|
include Aws::Structure
|
1641
1745
|
end
|
1642
1746
|
|
@@ -1653,6 +1757,7 @@ module Aws::Imagebuilder
|
|
1653
1757
|
class GetImageRecipePolicyResponse < Struct.new(
|
1654
1758
|
:request_id,
|
1655
1759
|
:policy)
|
1760
|
+
SENSITIVE = []
|
1656
1761
|
include Aws::Structure
|
1657
1762
|
end
|
1658
1763
|
|
@@ -1672,6 +1777,7 @@ module Aws::Imagebuilder
|
|
1672
1777
|
#
|
1673
1778
|
class GetImageRecipeRequest < Struct.new(
|
1674
1779
|
:image_recipe_arn)
|
1780
|
+
SENSITIVE = []
|
1675
1781
|
include Aws::Structure
|
1676
1782
|
end
|
1677
1783
|
|
@@ -1688,6 +1794,7 @@ module Aws::Imagebuilder
|
|
1688
1794
|
class GetImageRecipeResponse < Struct.new(
|
1689
1795
|
:request_id,
|
1690
1796
|
:image_recipe)
|
1797
|
+
SENSITIVE = []
|
1691
1798
|
include Aws::Structure
|
1692
1799
|
end
|
1693
1800
|
|
@@ -1695,7 +1802,7 @@ module Aws::Imagebuilder
|
|
1695
1802
|
# data as a hash:
|
1696
1803
|
#
|
1697
1804
|
# {
|
1698
|
-
# image_build_version_arn: "
|
1805
|
+
# image_build_version_arn: "ImageVersionArnOrBuildVersionArn", # required
|
1699
1806
|
# }
|
1700
1807
|
#
|
1701
1808
|
# @!attribute [rw] image_build_version_arn
|
@@ -1707,6 +1814,7 @@ module Aws::Imagebuilder
|
|
1707
1814
|
#
|
1708
1815
|
class GetImageRequest < Struct.new(
|
1709
1816
|
:image_build_version_arn)
|
1817
|
+
SENSITIVE = []
|
1710
1818
|
include Aws::Structure
|
1711
1819
|
end
|
1712
1820
|
|
@@ -1723,6 +1831,7 @@ module Aws::Imagebuilder
|
|
1723
1831
|
class GetImageResponse < Struct.new(
|
1724
1832
|
:request_id,
|
1725
1833
|
:image)
|
1834
|
+
SENSITIVE = []
|
1726
1835
|
include Aws::Structure
|
1727
1836
|
end
|
1728
1837
|
|
@@ -1744,6 +1853,7 @@ module Aws::Imagebuilder
|
|
1744
1853
|
#
|
1745
1854
|
class GetInfrastructureConfigurationRequest < Struct.new(
|
1746
1855
|
:infrastructure_configuration_arn)
|
1856
|
+
SENSITIVE = []
|
1747
1857
|
include Aws::Structure
|
1748
1858
|
end
|
1749
1859
|
|
@@ -1762,6 +1872,7 @@ module Aws::Imagebuilder
|
|
1762
1872
|
class GetInfrastructureConfigurationResponse < Struct.new(
|
1763
1873
|
:request_id,
|
1764
1874
|
:infrastructure_configuration)
|
1875
|
+
SENSITIVE = []
|
1765
1876
|
include Aws::Structure
|
1766
1877
|
end
|
1767
1878
|
|
@@ -1776,6 +1887,7 @@ module Aws::Imagebuilder
|
|
1776
1887
|
#
|
1777
1888
|
class IdempotentParameterMismatchException < Struct.new(
|
1778
1889
|
:message)
|
1890
|
+
SENSITIVE = []
|
1779
1891
|
include Aws::Structure
|
1780
1892
|
end
|
1781
1893
|
|
@@ -1869,6 +1981,7 @@ module Aws::Imagebuilder
|
|
1869
1981
|
:date_created,
|
1870
1982
|
:output_resources,
|
1871
1983
|
:tags)
|
1984
|
+
SENSITIVE = []
|
1872
1985
|
include Aws::Structure
|
1873
1986
|
end
|
1874
1987
|
|
@@ -1963,6 +2076,7 @@ module Aws::Imagebuilder
|
|
1963
2076
|
:date_last_run,
|
1964
2077
|
:date_next_run,
|
1965
2078
|
:tags)
|
2079
|
+
SENSITIVE = []
|
1966
2080
|
include Aws::Structure
|
1967
2081
|
end
|
1968
2082
|
|
@@ -2013,6 +2127,10 @@ module Aws::Imagebuilder
|
|
2013
2127
|
# The tags of the image recipe.
|
2014
2128
|
# @return [Hash<String,String>]
|
2015
2129
|
#
|
2130
|
+
# @!attribute [rw] working_directory
|
2131
|
+
# The working directory to be used during build and test workflows.
|
2132
|
+
# @return [String]
|
2133
|
+
#
|
2016
2134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageRecipe AWS API Documentation
|
2017
2135
|
#
|
2018
2136
|
class ImageRecipe < Struct.new(
|
@@ -2026,7 +2144,9 @@ module Aws::Imagebuilder
|
|
2026
2144
|
:parent_image,
|
2027
2145
|
:block_device_mappings,
|
2028
2146
|
:date_created,
|
2029
|
-
:tags
|
2147
|
+
:tags,
|
2148
|
+
:working_directory)
|
2149
|
+
SENSITIVE = []
|
2030
2150
|
include Aws::Structure
|
2031
2151
|
end
|
2032
2152
|
|
@@ -2070,6 +2190,7 @@ module Aws::Imagebuilder
|
|
2070
2190
|
:parent_image,
|
2071
2191
|
:date_created,
|
2072
2192
|
:tags)
|
2193
|
+
SENSITIVE = []
|
2073
2194
|
include Aws::Structure
|
2074
2195
|
end
|
2075
2196
|
|
@@ -2088,6 +2209,7 @@ module Aws::Imagebuilder
|
|
2088
2209
|
class ImageState < Struct.new(
|
2089
2210
|
:status,
|
2090
2211
|
:reason)
|
2212
|
+
SENSITIVE = []
|
2091
2213
|
include Aws::Structure
|
2092
2214
|
end
|
2093
2215
|
|
@@ -2147,6 +2269,7 @@ module Aws::Imagebuilder
|
|
2147
2269
|
:date_created,
|
2148
2270
|
:output_resources,
|
2149
2271
|
:tags)
|
2272
|
+
SENSITIVE = []
|
2150
2273
|
include Aws::Structure
|
2151
2274
|
end
|
2152
2275
|
|
@@ -2173,6 +2296,7 @@ module Aws::Imagebuilder
|
|
2173
2296
|
class ImageTestsConfiguration < Struct.new(
|
2174
2297
|
:image_tests_enabled,
|
2175
2298
|
:timeout_minutes)
|
2299
|
+
SENSITIVE = []
|
2176
2300
|
include Aws::Structure
|
2177
2301
|
end
|
2178
2302
|
|
@@ -2217,6 +2341,7 @@ module Aws::Imagebuilder
|
|
2217
2341
|
:os_version,
|
2218
2342
|
:owner,
|
2219
2343
|
:date_created)
|
2344
|
+
SENSITIVE = []
|
2220
2345
|
include Aws::Structure
|
2221
2346
|
end
|
2222
2347
|
|
@@ -2317,6 +2442,7 @@ module Aws::Imagebuilder
|
|
2317
2442
|
:kms_key_id,
|
2318
2443
|
:tags,
|
2319
2444
|
:client_token)
|
2445
|
+
SENSITIVE = []
|
2320
2446
|
include Aws::Structure
|
2321
2447
|
end
|
2322
2448
|
|
@@ -2338,6 +2464,7 @@ module Aws::Imagebuilder
|
|
2338
2464
|
:request_id,
|
2339
2465
|
:client_token,
|
2340
2466
|
:component_build_version_arn)
|
2467
|
+
SENSITIVE = []
|
2341
2468
|
include Aws::Structure
|
2342
2469
|
end
|
2343
2470
|
|
@@ -2397,6 +2524,10 @@ module Aws::Imagebuilder
|
|
2397
2524
|
# The date on which the infrastructure configuration was last updated.
|
2398
2525
|
# @return [String]
|
2399
2526
|
#
|
2527
|
+
# @!attribute [rw] resource_tags
|
2528
|
+
# The tags attached to the resource created by Image Builder.
|
2529
|
+
# @return [Hash<String,String>]
|
2530
|
+
#
|
2400
2531
|
# @!attribute [rw] tags
|
2401
2532
|
# The tags of the infrastructure configuration.
|
2402
2533
|
# @return [Hash<String,String>]
|
@@ -2417,7 +2548,9 @@ module Aws::Imagebuilder
|
|
2417
2548
|
:sns_topic_arn,
|
2418
2549
|
:date_created,
|
2419
2550
|
:date_updated,
|
2551
|
+
:resource_tags,
|
2420
2552
|
:tags)
|
2553
|
+
SENSITIVE = []
|
2421
2554
|
include Aws::Structure
|
2422
2555
|
end
|
2423
2556
|
|
@@ -2443,6 +2576,10 @@ module Aws::Imagebuilder
|
|
2443
2576
|
# The date on which the infrastructure configuration was last updated.
|
2444
2577
|
# @return [String]
|
2445
2578
|
#
|
2579
|
+
# @!attribute [rw] resource_tags
|
2580
|
+
# The tags attached to the image created by Image Builder.
|
2581
|
+
# @return [Hash<String,String>]
|
2582
|
+
#
|
2446
2583
|
# @!attribute [rw] tags
|
2447
2584
|
# The tags of the infrastructure configuration.
|
2448
2585
|
# @return [Hash<String,String>]
|
@@ -2455,7 +2592,9 @@ module Aws::Imagebuilder
|
|
2455
2592
|
:description,
|
2456
2593
|
:date_created,
|
2457
2594
|
:date_updated,
|
2595
|
+
:resource_tags,
|
2458
2596
|
:tags)
|
2597
|
+
SENSITIVE = []
|
2459
2598
|
include Aws::Structure
|
2460
2599
|
end
|
2461
2600
|
|
@@ -2503,6 +2642,7 @@ module Aws::Imagebuilder
|
|
2503
2642
|
:ebs,
|
2504
2643
|
:virtual_name,
|
2505
2644
|
:no_device)
|
2645
|
+
SENSITIVE = []
|
2506
2646
|
include Aws::Structure
|
2507
2647
|
end
|
2508
2648
|
|
@@ -2515,6 +2655,7 @@ module Aws::Imagebuilder
|
|
2515
2655
|
#
|
2516
2656
|
class InvalidPaginationTokenException < Struct.new(
|
2517
2657
|
:message)
|
2658
|
+
SENSITIVE = []
|
2518
2659
|
include Aws::Structure
|
2519
2660
|
end
|
2520
2661
|
|
@@ -2528,6 +2669,7 @@ module Aws::Imagebuilder
|
|
2528
2669
|
#
|
2529
2670
|
class InvalidParameterCombinationException < Struct.new(
|
2530
2671
|
:message)
|
2672
|
+
SENSITIVE = []
|
2531
2673
|
include Aws::Structure
|
2532
2674
|
end
|
2533
2675
|
|
@@ -2541,6 +2683,7 @@ module Aws::Imagebuilder
|
|
2541
2683
|
#
|
2542
2684
|
class InvalidParameterException < Struct.new(
|
2543
2685
|
:message)
|
2686
|
+
SENSITIVE = []
|
2544
2687
|
include Aws::Structure
|
2545
2688
|
end
|
2546
2689
|
|
@@ -2553,6 +2696,7 @@ module Aws::Imagebuilder
|
|
2553
2696
|
#
|
2554
2697
|
class InvalidParameterValueException < Struct.new(
|
2555
2698
|
:message)
|
2699
|
+
SENSITIVE = []
|
2556
2700
|
include Aws::Structure
|
2557
2701
|
end
|
2558
2702
|
|
@@ -2566,6 +2710,7 @@ module Aws::Imagebuilder
|
|
2566
2710
|
#
|
2567
2711
|
class InvalidRequestException < Struct.new(
|
2568
2712
|
:message)
|
2713
|
+
SENSITIVE = []
|
2569
2714
|
include Aws::Structure
|
2570
2715
|
end
|
2571
2716
|
|
@@ -2579,13 +2724,16 @@ module Aws::Imagebuilder
|
|
2579
2724
|
#
|
2580
2725
|
class InvalidVersionNumberException < Struct.new(
|
2581
2726
|
:message)
|
2727
|
+
SENSITIVE = []
|
2582
2728
|
include Aws::Structure
|
2583
2729
|
end
|
2584
2730
|
|
2585
2731
|
# Describes the configuration for a launch permission. The launch
|
2586
2732
|
# permission modification request is sent to the [EC2
|
2587
2733
|
# ModifyImageAttribute][1] API on behalf of the user for each Region
|
2588
|
-
# they have selected to distribute the AMI.
|
2734
|
+
# they have selected to distribute the AMI. To make an AMI public, set
|
2735
|
+
# the launch permission authorized accounts to `all`. See the examples
|
2736
|
+
# for making an AMI public at [EC2 ModifyImageAttribute][1].
|
2589
2737
|
#
|
2590
2738
|
#
|
2591
2739
|
#
|
@@ -2612,6 +2760,7 @@ module Aws::Imagebuilder
|
|
2612
2760
|
class LaunchPermissionConfiguration < Struct.new(
|
2613
2761
|
:user_ids,
|
2614
2762
|
:user_groups)
|
2763
|
+
SENSITIVE = []
|
2615
2764
|
include Aws::Structure
|
2616
2765
|
end
|
2617
2766
|
|
@@ -2644,6 +2793,7 @@ module Aws::Imagebuilder
|
|
2644
2793
|
:component_version_arn,
|
2645
2794
|
:max_results,
|
2646
2795
|
:next_token)
|
2796
|
+
SENSITIVE = []
|
2647
2797
|
include Aws::Structure
|
2648
2798
|
end
|
2649
2799
|
|
@@ -2668,6 +2818,7 @@ module Aws::Imagebuilder
|
|
2668
2818
|
:request_id,
|
2669
2819
|
:component_summary_list,
|
2670
2820
|
:next_token)
|
2821
|
+
SENSITIVE = []
|
2671
2822
|
include Aws::Structure
|
2672
2823
|
end
|
2673
2824
|
|
@@ -2714,6 +2865,7 @@ module Aws::Imagebuilder
|
|
2714
2865
|
:filters,
|
2715
2866
|
:max_results,
|
2716
2867
|
:next_token)
|
2868
|
+
SENSITIVE = []
|
2717
2869
|
include Aws::Structure
|
2718
2870
|
end
|
2719
2871
|
|
@@ -2738,6 +2890,7 @@ module Aws::Imagebuilder
|
|
2738
2890
|
:request_id,
|
2739
2891
|
:component_version_list,
|
2740
2892
|
:next_token)
|
2893
|
+
SENSITIVE = []
|
2741
2894
|
include Aws::Structure
|
2742
2895
|
end
|
2743
2896
|
|
@@ -2774,6 +2927,7 @@ module Aws::Imagebuilder
|
|
2774
2927
|
:filters,
|
2775
2928
|
:max_results,
|
2776
2929
|
:next_token)
|
2930
|
+
SENSITIVE = []
|
2777
2931
|
include Aws::Structure
|
2778
2932
|
end
|
2779
2933
|
|
@@ -2798,6 +2952,7 @@ module Aws::Imagebuilder
|
|
2798
2952
|
:request_id,
|
2799
2953
|
:distribution_configuration_summary_list,
|
2800
2954
|
:next_token)
|
2955
|
+
SENSITIVE = []
|
2801
2956
|
include Aws::Structure
|
2802
2957
|
end
|
2803
2958
|
|
@@ -2841,6 +2996,7 @@ module Aws::Imagebuilder
|
|
2841
2996
|
:filters,
|
2842
2997
|
:max_results,
|
2843
2998
|
:next_token)
|
2999
|
+
SENSITIVE = []
|
2844
3000
|
include Aws::Structure
|
2845
3001
|
end
|
2846
3002
|
|
@@ -2865,6 +3021,7 @@ module Aws::Imagebuilder
|
|
2865
3021
|
:request_id,
|
2866
3022
|
:image_summary_list,
|
2867
3023
|
:next_token)
|
3024
|
+
SENSITIVE = []
|
2868
3025
|
include Aws::Structure
|
2869
3026
|
end
|
2870
3027
|
|
@@ -2908,6 +3065,7 @@ module Aws::Imagebuilder
|
|
2908
3065
|
:filters,
|
2909
3066
|
:max_results,
|
2910
3067
|
:next_token)
|
3068
|
+
SENSITIVE = []
|
2911
3069
|
include Aws::Structure
|
2912
3070
|
end
|
2913
3071
|
|
@@ -2932,6 +3090,7 @@ module Aws::Imagebuilder
|
|
2932
3090
|
:request_id,
|
2933
3091
|
:image_summary_list,
|
2934
3092
|
:next_token)
|
3093
|
+
SENSITIVE = []
|
2935
3094
|
include Aws::Structure
|
2936
3095
|
end
|
2937
3096
|
|
@@ -2968,6 +3127,7 @@ module Aws::Imagebuilder
|
|
2968
3127
|
:filters,
|
2969
3128
|
:max_results,
|
2970
3129
|
:next_token)
|
3130
|
+
SENSITIVE = []
|
2971
3131
|
include Aws::Structure
|
2972
3132
|
end
|
2973
3133
|
|
@@ -2992,6 +3152,7 @@ module Aws::Imagebuilder
|
|
2992
3152
|
:request_id,
|
2993
3153
|
:image_pipeline_list,
|
2994
3154
|
:next_token)
|
3155
|
+
SENSITIVE = []
|
2995
3156
|
include Aws::Structure
|
2996
3157
|
end
|
2997
3158
|
|
@@ -3038,6 +3199,7 @@ module Aws::Imagebuilder
|
|
3038
3199
|
:filters,
|
3039
3200
|
:max_results,
|
3040
3201
|
:next_token)
|
3202
|
+
SENSITIVE = []
|
3041
3203
|
include Aws::Structure
|
3042
3204
|
end
|
3043
3205
|
|
@@ -3062,6 +3224,7 @@ module Aws::Imagebuilder
|
|
3062
3224
|
:request_id,
|
3063
3225
|
:image_recipe_summary_list,
|
3064
3226
|
:next_token)
|
3227
|
+
SENSITIVE = []
|
3065
3228
|
include Aws::Structure
|
3066
3229
|
end
|
3067
3230
|
|
@@ -3108,6 +3271,7 @@ module Aws::Imagebuilder
|
|
3108
3271
|
:filters,
|
3109
3272
|
:max_results,
|
3110
3273
|
:next_token)
|
3274
|
+
SENSITIVE = []
|
3111
3275
|
include Aws::Structure
|
3112
3276
|
end
|
3113
3277
|
|
@@ -3132,6 +3296,7 @@ module Aws::Imagebuilder
|
|
3132
3296
|
:request_id,
|
3133
3297
|
:image_version_list,
|
3134
3298
|
:next_token)
|
3299
|
+
SENSITIVE = []
|
3135
3300
|
include Aws::Structure
|
3136
3301
|
end
|
3137
3302
|
|
@@ -3168,6 +3333,7 @@ module Aws::Imagebuilder
|
|
3168
3333
|
:filters,
|
3169
3334
|
:max_results,
|
3170
3335
|
:next_token)
|
3336
|
+
SENSITIVE = []
|
3171
3337
|
include Aws::Structure
|
3172
3338
|
end
|
3173
3339
|
|
@@ -3192,6 +3358,7 @@ module Aws::Imagebuilder
|
|
3192
3358
|
:request_id,
|
3193
3359
|
:infrastructure_configuration_summary_list,
|
3194
3360
|
:next_token)
|
3361
|
+
SENSITIVE = []
|
3195
3362
|
include Aws::Structure
|
3196
3363
|
end
|
3197
3364
|
|
@@ -3211,6 +3378,7 @@ module Aws::Imagebuilder
|
|
3211
3378
|
#
|
3212
3379
|
class ListTagsForResourceRequest < Struct.new(
|
3213
3380
|
:resource_arn)
|
3381
|
+
SENSITIVE = []
|
3214
3382
|
include Aws::Structure
|
3215
3383
|
end
|
3216
3384
|
|
@@ -3222,6 +3390,7 @@ module Aws::Imagebuilder
|
|
3222
3390
|
#
|
3223
3391
|
class ListTagsForResourceResponse < Struct.new(
|
3224
3392
|
:tags)
|
3393
|
+
SENSITIVE = []
|
3225
3394
|
include Aws::Structure
|
3226
3395
|
end
|
3227
3396
|
|
@@ -3245,6 +3414,7 @@ module Aws::Imagebuilder
|
|
3245
3414
|
#
|
3246
3415
|
class Logging < Struct.new(
|
3247
3416
|
:s3_logs)
|
3417
|
+
SENSITIVE = []
|
3248
3418
|
include Aws::Structure
|
3249
3419
|
end
|
3250
3420
|
|
@@ -3258,6 +3428,7 @@ module Aws::Imagebuilder
|
|
3258
3428
|
#
|
3259
3429
|
class OutputResources < Struct.new(
|
3260
3430
|
:amis)
|
3431
|
+
SENSITIVE = []
|
3261
3432
|
include Aws::Structure
|
3262
3433
|
end
|
3263
3434
|
|
@@ -3283,6 +3454,7 @@ module Aws::Imagebuilder
|
|
3283
3454
|
class PutComponentPolicyRequest < Struct.new(
|
3284
3455
|
:component_arn,
|
3285
3456
|
:policy)
|
3457
|
+
SENSITIVE = []
|
3286
3458
|
include Aws::Structure
|
3287
3459
|
end
|
3288
3460
|
|
@@ -3300,6 +3472,7 @@ module Aws::Imagebuilder
|
|
3300
3472
|
class PutComponentPolicyResponse < Struct.new(
|
3301
3473
|
:request_id,
|
3302
3474
|
:component_arn)
|
3475
|
+
SENSITIVE = []
|
3303
3476
|
include Aws::Structure
|
3304
3477
|
end
|
3305
3478
|
|
@@ -3325,6 +3498,7 @@ module Aws::Imagebuilder
|
|
3325
3498
|
class PutImagePolicyRequest < Struct.new(
|
3326
3499
|
:image_arn,
|
3327
3500
|
:policy)
|
3501
|
+
SENSITIVE = []
|
3328
3502
|
include Aws::Structure
|
3329
3503
|
end
|
3330
3504
|
|
@@ -3342,6 +3516,7 @@ module Aws::Imagebuilder
|
|
3342
3516
|
class PutImagePolicyResponse < Struct.new(
|
3343
3517
|
:request_id,
|
3344
3518
|
:image_arn)
|
3519
|
+
SENSITIVE = []
|
3345
3520
|
include Aws::Structure
|
3346
3521
|
end
|
3347
3522
|
|
@@ -3367,6 +3542,7 @@ module Aws::Imagebuilder
|
|
3367
3542
|
class PutImageRecipePolicyRequest < Struct.new(
|
3368
3543
|
:image_recipe_arn,
|
3369
3544
|
:policy)
|
3545
|
+
SENSITIVE = []
|
3370
3546
|
include Aws::Structure
|
3371
3547
|
end
|
3372
3548
|
|
@@ -3384,6 +3560,7 @@ module Aws::Imagebuilder
|
|
3384
3560
|
class PutImageRecipePolicyResponse < Struct.new(
|
3385
3561
|
:request_id,
|
3386
3562
|
:image_recipe_arn)
|
3563
|
+
SENSITIVE = []
|
3387
3564
|
include Aws::Structure
|
3388
3565
|
end
|
3389
3566
|
|
@@ -3396,6 +3573,7 @@ module Aws::Imagebuilder
|
|
3396
3573
|
#
|
3397
3574
|
class ResourceAlreadyExistsException < Struct.new(
|
3398
3575
|
:message)
|
3576
|
+
SENSITIVE = []
|
3399
3577
|
include Aws::Structure
|
3400
3578
|
end
|
3401
3579
|
|
@@ -3409,6 +3587,7 @@ module Aws::Imagebuilder
|
|
3409
3587
|
#
|
3410
3588
|
class ResourceDependencyException < Struct.new(
|
3411
3589
|
:message)
|
3590
|
+
SENSITIVE = []
|
3412
3591
|
include Aws::Structure
|
3413
3592
|
end
|
3414
3593
|
|
@@ -3422,6 +3601,7 @@ module Aws::Imagebuilder
|
|
3422
3601
|
#
|
3423
3602
|
class ResourceInUseException < Struct.new(
|
3424
3603
|
:message)
|
3604
|
+
SENSITIVE = []
|
3425
3605
|
include Aws::Structure
|
3426
3606
|
end
|
3427
3607
|
|
@@ -3435,6 +3615,7 @@ module Aws::Imagebuilder
|
|
3435
3615
|
#
|
3436
3616
|
class ResourceNotFoundException < Struct.new(
|
3437
3617
|
:message)
|
3618
|
+
SENSITIVE = []
|
3438
3619
|
include Aws::Structure
|
3439
3620
|
end
|
3440
3621
|
|
@@ -3461,6 +3642,7 @@ module Aws::Imagebuilder
|
|
3461
3642
|
class S3Logs < Struct.new(
|
3462
3643
|
:s3_bucket_name,
|
3463
3644
|
:s3_key_prefix)
|
3645
|
+
SENSITIVE = []
|
3464
3646
|
include Aws::Structure
|
3465
3647
|
end
|
3466
3648
|
|
@@ -3494,6 +3676,7 @@ module Aws::Imagebuilder
|
|
3494
3676
|
class Schedule < Struct.new(
|
3495
3677
|
:schedule_expression,
|
3496
3678
|
:pipeline_execution_start_condition)
|
3679
|
+
SENSITIVE = []
|
3497
3680
|
include Aws::Structure
|
3498
3681
|
end
|
3499
3682
|
|
@@ -3507,6 +3690,26 @@ module Aws::Imagebuilder
|
|
3507
3690
|
#
|
3508
3691
|
class ServiceException < Struct.new(
|
3509
3692
|
:message)
|
3693
|
+
SENSITIVE = []
|
3694
|
+
include Aws::Structure
|
3695
|
+
end
|
3696
|
+
|
3697
|
+
# You have exceeded the number of permitted resources or operations for
|
3698
|
+
# this service. For service quotas, see [EC2 Image Builder endpoints and
|
3699
|
+
# quotas][1].
|
3700
|
+
#
|
3701
|
+
#
|
3702
|
+
#
|
3703
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder
|
3704
|
+
#
|
3705
|
+
# @!attribute [rw] message
|
3706
|
+
# @return [String]
|
3707
|
+
#
|
3708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ServiceQuotaExceededException AWS API Documentation
|
3709
|
+
#
|
3710
|
+
class ServiceQuotaExceededException < Struct.new(
|
3711
|
+
:message)
|
3712
|
+
SENSITIVE = []
|
3510
3713
|
include Aws::Structure
|
3511
3714
|
end
|
3512
3715
|
|
@@ -3519,6 +3722,7 @@ module Aws::Imagebuilder
|
|
3519
3722
|
#
|
3520
3723
|
class ServiceUnavailableException < Struct.new(
|
3521
3724
|
:message)
|
3725
|
+
SENSITIVE = []
|
3522
3726
|
include Aws::Structure
|
3523
3727
|
end
|
3524
3728
|
|
@@ -3547,6 +3751,7 @@ module Aws::Imagebuilder
|
|
3547
3751
|
class StartImagePipelineExecutionRequest < Struct.new(
|
3548
3752
|
:image_pipeline_arn,
|
3549
3753
|
:client_token)
|
3754
|
+
SENSITIVE = []
|
3550
3755
|
include Aws::Structure
|
3551
3756
|
end
|
3552
3757
|
|
@@ -3569,6 +3774,7 @@ module Aws::Imagebuilder
|
|
3569
3774
|
:request_id,
|
3570
3775
|
:client_token,
|
3571
3776
|
:image_build_version_arn)
|
3777
|
+
SENSITIVE = []
|
3572
3778
|
include Aws::Structure
|
3573
3779
|
end
|
3574
3780
|
|
@@ -3595,6 +3801,7 @@ module Aws::Imagebuilder
|
|
3595
3801
|
class TagResourceRequest < Struct.new(
|
3596
3802
|
:resource_arn,
|
3597
3803
|
:tags)
|
3804
|
+
SENSITIVE = []
|
3598
3805
|
include Aws::Structure
|
3599
3806
|
end
|
3600
3807
|
|
@@ -3624,6 +3831,7 @@ module Aws::Imagebuilder
|
|
3624
3831
|
class UntagResourceRequest < Struct.new(
|
3625
3832
|
:resource_arn,
|
3626
3833
|
:tag_keys)
|
3834
|
+
SENSITIVE = []
|
3627
3835
|
include Aws::Structure
|
3628
3836
|
end
|
3629
3837
|
|
@@ -3646,6 +3854,7 @@ module Aws::Imagebuilder
|
|
3646
3854
|
# ami_tags: {
|
3647
3855
|
# "TagKey" => "TagValue",
|
3648
3856
|
# },
|
3857
|
+
# kms_key_id: "NonEmptyString",
|
3649
3858
|
# launch_permission: {
|
3650
3859
|
# user_ids: ["NonEmptyString"],
|
3651
3860
|
# user_groups: ["NonEmptyString"],
|
@@ -3684,6 +3893,7 @@ module Aws::Imagebuilder
|
|
3684
3893
|
:description,
|
3685
3894
|
:distributions,
|
3686
3895
|
:client_token)
|
3896
|
+
SENSITIVE = []
|
3687
3897
|
include Aws::Structure
|
3688
3898
|
end
|
3689
3899
|
|
@@ -3706,6 +3916,7 @@ module Aws::Imagebuilder
|
|
3706
3916
|
:request_id,
|
3707
3917
|
:client_token,
|
3708
3918
|
:distribution_configuration_arn)
|
3919
|
+
SENSITIVE = []
|
3709
3920
|
include Aws::Structure
|
3710
3921
|
end
|
3711
3922
|
|
@@ -3795,6 +4006,7 @@ module Aws::Imagebuilder
|
|
3795
4006
|
:schedule,
|
3796
4007
|
:status,
|
3797
4008
|
:client_token)
|
4009
|
+
SENSITIVE = []
|
3798
4010
|
include Aws::Structure
|
3799
4011
|
end
|
3800
4012
|
|
@@ -3817,6 +4029,7 @@ module Aws::Imagebuilder
|
|
3817
4029
|
:request_id,
|
3818
4030
|
:client_token,
|
3819
4031
|
:image_pipeline_arn)
|
4032
|
+
SENSITIVE = []
|
3820
4033
|
include Aws::Structure
|
3821
4034
|
end
|
3822
4035
|
|
@@ -3840,6 +4053,9 @@ module Aws::Imagebuilder
|
|
3840
4053
|
# terminate_instance_on_failure: false,
|
3841
4054
|
# sns_topic_arn: "SnsTopicArn",
|
3842
4055
|
# client_token: "ClientToken", # required
|
4056
|
+
# resource_tags: {
|
4057
|
+
# "TagKey" => "TagValue",
|
4058
|
+
# },
|
3843
4059
|
# }
|
3844
4060
|
#
|
3845
4061
|
# @!attribute [rw] infrastructure_configuration_arn
|
@@ -3899,6 +4115,10 @@ module Aws::Imagebuilder
|
|
3899
4115
|
# not need to pass this option.
|
3900
4116
|
# @return [String]
|
3901
4117
|
#
|
4118
|
+
# @!attribute [rw] resource_tags
|
4119
|
+
# The tags attached to the resource created by Image Builder.
|
4120
|
+
# @return [Hash<String,String>]
|
4121
|
+
#
|
3902
4122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateInfrastructureConfigurationRequest AWS API Documentation
|
3903
4123
|
#
|
3904
4124
|
class UpdateInfrastructureConfigurationRequest < Struct.new(
|
@@ -3912,7 +4132,9 @@ module Aws::Imagebuilder
|
|
3912
4132
|
:key_pair,
|
3913
4133
|
:terminate_instance_on_failure,
|
3914
4134
|
:sns_topic_arn,
|
3915
|
-
:client_token
|
4135
|
+
:client_token,
|
4136
|
+
:resource_tags)
|
4137
|
+
SENSITIVE = []
|
3916
4138
|
include Aws::Structure
|
3917
4139
|
end
|
3918
4140
|
|
@@ -3935,6 +4157,7 @@ module Aws::Imagebuilder
|
|
3935
4157
|
:request_id,
|
3936
4158
|
:client_token,
|
3937
4159
|
:infrastructure_configuration_arn)
|
4160
|
+
SENSITIVE = []
|
3938
4161
|
include Aws::Structure
|
3939
4162
|
end
|
3940
4163
|
|