aws-sdk-imagebuilder 1.107.0 → 1.108.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d4c2823ae22ffa510bcb905aad6f60f27208f9ee5f8d3c2a1156e18513548cf
4
- data.tar.gz: 9e97a1336d054e9646e2199ea006f2f097b3aa17427820a5997a1e4481c2cc15
3
+ metadata.gz: 778424d35315adab825fdae777a8d8428f8bc623ac99f461b13b8929014b3560
4
+ data.tar.gz: eb78e4a013a1bdfc5abcb8795cf7374abf10929fc93d8b5b5237666f37ab40ed
5
5
  SHA512:
6
- metadata.gz: 2ee1df5779fb9fb9d81fb2c764febf10de2480270c119683282cedba3dd045671f4c6501c729680060646e295fec8be0e5e78125d1140b9d16dde2462d73c1a9
7
- data.tar.gz: 6a32755423dcdd71139b0ceba0e8bd22cfb4f14d42369d9b65f113f4957e45e4628dbfa797130c3c9dc0cb1b22c77d68b4ec46c294f5323bc923a759ec883aa4
6
+ metadata.gz: 570a9ddc212aa72f235d02c4013b4927b20795431e59671da20973f6505b9f7db48e0969733385f5a87565dcc62a944c311e5a9ffdc0162785e069ff1e9bddc2
7
+ data.tar.gz: cbf6239fc38280c2dd013c3235e9e2c7a887b8ff8ddf7e11ba4b1f7ba984168374ce9a3feb977c129f8a0805264a4d61064d49fd0e97d35d37feb1209e0adddf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.108.0 (2026-06-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AMI watermarks in Image Builder.
8
+
4
9
  1.107.0 (2026-05-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.107.0
1
+ 1.108.0
@@ -1190,7 +1190,12 @@ module Aws::Imagebuilder
1190
1190
  # that grants Image Builder access to perform workflow actions.
1191
1191
  #
1192
1192
  # @option params [Types::PipelineLoggingConfiguration] :logging_configuration
1193
- # Define logging configuration for the image build process.
1193
+ # Specifies the logging configuration for the image pipeline. Use this
1194
+ # to define custom CloudWatch Logs log groups for your pipeline
1195
+ # execution logs and image build logs. The service manages log groups
1196
+ # with names starting with `/aws/imagebuilder/` using the service-linked
1197
+ # role. For custom log group names outside of this prefix, you must also
1198
+ # provide an `executionRole`.
1194
1199
  #
1195
1200
  # @return [Types::CreateImagePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1196
1201
  #
@@ -1336,6 +1341,17 @@ module Aws::Imagebuilder
1336
1341
  # Tags that are applied to the AMI that Image Builder creates during the
1337
1342
  # Build phase prior to image distribution.
1338
1343
  #
1344
+ # @option params [Array<String>] :ami_watermarks
1345
+ # The AMI watermark names to attach to the output AMI from this recipe.
1346
+ # AMI watermarks are lineage markers. They automatically propagate to
1347
+ # derivative AMIs when the source AMI is copied or distributed across
1348
+ # Regions or accounts.
1349
+ #
1350
+ # <note markdown="1"> AMI watermarks are supported only for image recipes. AMIs with
1351
+ # watermarks cannot be made public.
1352
+ #
1353
+ # </note>
1354
+ #
1339
1355
  # @option params [required, String] :client_token
1340
1356
  # Unique, case-sensitive identifier you provide to ensure idempotency of
1341
1357
  # the request. For more information, see [Ensuring idempotency][1] in
@@ -1403,6 +1419,7 @@ module Aws::Imagebuilder
1403
1419
  # ami_tags: {
1404
1420
  # "TagKey" => "TagValue",
1405
1421
  # },
1422
+ # ami_watermarks: ["AmiWatermarkName"],
1406
1423
  # client_token: "ClientToken", # required
1407
1424
  # })
1408
1425
  #
@@ -2097,18 +2114,25 @@ module Aws::Imagebuilder
2097
2114
  req.send_request(options)
2098
2115
  end
2099
2116
 
2100
- # DistributeImage distributes existing AMIs to additional regions and
2101
- # accounts without rebuilding the image.
2117
+ # Distributes an existing AMI to target Regions and accounts without
2118
+ # running the full image build process. This operation only runs the
2119
+ # distribution phase on an image that has already been built.
2102
2120
  #
2103
2121
  # @option params [required, String] :source_image
2104
- # The source image Amazon Resource Name (ARN) to distribute.
2122
+ # The source image to distribute. Specify an AMI identifier, SSM
2123
+ # parameter path, or Image Builder image Amazon Resource Name (ARN).
2124
+ # When you specify an Image Builder image Amazon Resource Name (ARN),
2125
+ # the image must be in the `AVAILABLE` state.
2105
2126
  #
2106
2127
  # @option params [required, String] :distribution_configuration_arn
2107
- # The Amazon Resource Name (ARN) of the distribution configuration to
2108
- # use.
2128
+ # The Amazon Resource Name (ARN) of the distribution configuration. The
2129
+ # configuration defines target Regions, accounts, and AMI settings. The
2130
+ # distribution configuration must be in the same Region as this
2131
+ # operation.
2109
2132
  #
2110
2133
  # @option params [required, String] :execution_role
2111
- # The IAM role to use for the distribution.
2134
+ # The name or Amazon Resource Name (ARN) of the IAM role that Image
2135
+ # Builder assumes to distribute the image.
2112
2136
  #
2113
2137
  # @option params [Hash<String,String>] :tags
2114
2138
  # The tags to apply to the distributed image.
@@ -2503,6 +2527,8 @@ module Aws::Imagebuilder
2503
2527
  # resp.image.image_recipe.additional_instance_configuration.user_data_override #=> String
2504
2528
  # resp.image.image_recipe.ami_tags #=> Hash
2505
2529
  # resp.image.image_recipe.ami_tags["TagKey"] #=> String
2530
+ # resp.image.image_recipe.ami_watermarks #=> Array
2531
+ # resp.image.image_recipe.ami_watermarks[0] #=> String
2506
2532
  # resp.image.container_recipe.arn #=> String
2507
2533
  # resp.image.container_recipe.container_type #=> String, one of "DOCKER"
2508
2534
  # resp.image.container_recipe.name #=> String
@@ -2827,6 +2853,8 @@ module Aws::Imagebuilder
2827
2853
  # resp.image_recipe.additional_instance_configuration.user_data_override #=> String
2828
2854
  # resp.image_recipe.ami_tags #=> Hash
2829
2855
  # resp.image_recipe.ami_tags["TagKey"] #=> String
2856
+ # resp.image_recipe.ami_watermarks #=> Array
2857
+ # resp.image_recipe.ami_watermarks[0] #=> String
2830
2858
  # resp.latest_version_references.latest_version_arn #=> String
2831
2859
  # resp.latest_version_references.latest_major_version_arn #=> String
2832
2860
  # resp.latest_version_references.latest_minor_version_arn #=> String
@@ -5333,15 +5361,20 @@ module Aws::Imagebuilder
5333
5361
  # Uniquely identifies the workflow step that sent the step action.
5334
5362
  #
5335
5363
  # @option params [required, String] :image_build_version_arn
5336
- # The Amazon Resource Name (ARN) of the image build version to send
5337
- # action for.
5364
+ # The Amazon Resource Name (ARN) of the image build version associated
5365
+ # with the workflow step execution. This value must match the image that
5366
+ # owns the waiting step. If the ARN does not correspond to the image
5367
+ # running the workflow, then the request fails with a validation error.
5338
5368
  #
5339
5369
  # @option params [required, String] :action
5340
- # The action for the image creation process to take while a workflow
5341
- # `WaitForAction` step waits for an asynchronous action to complete.
5370
+ # The action to perform on the paused workflow step. The workflow step
5371
+ # must be in a waiting state to accept an action. The request fails if
5372
+ # the step has already timed out or been actioned.
5342
5373
  #
5343
5374
  # @option params [String] :reason
5344
- # The reason why this action is sent.
5375
+ # The reason for the action. This value is stored with the step
5376
+ # execution record and is accessible in subsequent workflow steps via
5377
+ # step output references.
5345
5378
  #
5346
5379
  # @option params [required, String] :client_token
5347
5380
  # Unique, case-sensitive identifier you provide to ensure idempotency of
@@ -5443,26 +5476,38 @@ module Aws::Imagebuilder
5443
5476
  # specified image resources.
5444
5477
  #
5445
5478
  # @option params [required, String] :resource_arn
5446
- # The Amazon Resource Name (ARN) of the Image Builder resource that is
5447
- # updated. The state update might also impact associated resources.
5479
+ # The Amazon Resource Name (ARN) of the image build version to update.
5480
+ # The image must be in one of these terminal states: `AVAILABLE`,
5481
+ # `DEPRECATED`, `DISABLED`, `FAILED`, or `CANCELLED`. Images with
5482
+ # `FAILED` or `CANCELLED` status can transition only to `DELETED`.
5448
5483
  #
5449
5484
  # @option params [required, Types::ResourceState] :state
5450
- # Indicates the lifecycle action to take for this request.
5485
+ # Specifies the lifecycle action to take for this request. For AMI-based
5486
+ # images, valid values are `AVAILABLE`, `DEPRECATED`, `DISABLED`, and
5487
+ # `DELETED`. For container-based images, only `DELETED` is supported.
5451
5488
  #
5452
5489
  # @option params [String] :execution_role
5453
5490
  # The name or Amazon Resource Name (ARN) of the IAM role that’s used to
5454
5491
  # update image state.
5455
5492
  #
5456
5493
  # @option params [Types::ResourceStateUpdateIncludeResources] :include_resources
5457
- # A list of image resources to update state for.
5494
+ # Specifies which image resources to include in the state update. When
5495
+ # specified, the lifecycle action applies to underlying resources. These
5496
+ # resources include AMIs, snapshots, and containers in addition to the
5497
+ # Image Builder image resource. Requires `executionRole` to also be
5498
+ # specified. To delete an image and its underlying resources, you must
5499
+ # specify `includeResources`. To delete only the Image Builder image
5500
+ # record without affecting underlying resources, use the `DeleteImage`
5501
+ # API instead.
5458
5502
  #
5459
5503
  # @option params [Types::ResourceStateUpdateExclusionRules] :exclusion_rules
5460
5504
  # Skip action on the image resource and associated resources if
5461
5505
  # specified exclusion rules are met.
5462
5506
  #
5463
5507
  # @option params [Time,DateTime,Date,Integer,String] :update_at
5464
- # The timestamp that indicates when resources are updated by a lifecycle
5465
- # action.
5508
+ # Specifies the timestamp when the state transition takes effect. Use
5509
+ # this parameter only when the target status is `DEPRECATED`. The value
5510
+ # must be a future time.
5466
5511
  #
5467
5512
  # @option params [required, String] :client_token
5468
5513
  # Unique, case-sensitive identifier you provide to ensure idempotency of
@@ -6123,7 +6168,7 @@ module Aws::Imagebuilder
6123
6168
  tracer: tracer
6124
6169
  )
6125
6170
  context[:gem_name] = 'aws-sdk-imagebuilder'
6126
- context[:gem_version] = '1.107.0'
6171
+ context[:gem_version] = '1.108.0'
6127
6172
  Seahorse::Client::Request.new(handlers, context)
6128
6173
  end
6129
6174
 
@@ -23,6 +23,8 @@ module Aws::Imagebuilder
23
23
  AmiDistributionConfiguration = Shapes::StructureShape.new(name: 'AmiDistributionConfiguration')
24
24
  AmiList = Shapes::ListShape.new(name: 'AmiList')
25
25
  AmiNameString = Shapes::StringShape.new(name: 'AmiNameString')
26
+ AmiWatermarkName = Shapes::StringShape.new(name: 'AmiWatermarkName')
27
+ AmiWatermarksList = Shapes::ListShape.new(name: 'AmiWatermarksList')
26
28
  Arn = Shapes::StringShape.new(name: 'Arn')
27
29
  AutoDisableFailureCount = Shapes::IntegerShape.new(name: 'AutoDisableFailureCount')
28
30
  AutoDisablePolicy = Shapes::StructureShape.new(name: 'AutoDisablePolicy')
@@ -525,6 +527,8 @@ module Aws::Imagebuilder
525
527
 
526
528
  AmiList.member = Shapes::ShapeRef.new(shape: Ami)
527
529
 
530
+ AmiWatermarksList.member = Shapes::ShapeRef.new(shape: AmiWatermarkName)
531
+
528
532
  AutoDisablePolicy.add_member(:failure_count, Shapes::ShapeRef.new(shape: AutoDisableFailureCount, required: true, location_name: "failureCount"))
529
533
  AutoDisablePolicy.struct_class = Types::AutoDisablePolicy
530
534
 
@@ -763,6 +767,7 @@ module Aws::Imagebuilder
763
767
  CreateImageRecipeRequest.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
764
768
  CreateImageRecipeRequest.add_member(:additional_instance_configuration, Shapes::ShapeRef.new(shape: AdditionalInstanceConfiguration, location_name: "additionalInstanceConfiguration"))
765
769
  CreateImageRecipeRequest.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
770
+ CreateImageRecipeRequest.add_member(:ami_watermarks, Shapes::ShapeRef.new(shape: AmiWatermarksList, location_name: "amiWatermarks"))
766
771
  CreateImageRecipeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
767
772
  CreateImageRecipeRequest.struct_class = Types::CreateImageRecipeRequest
768
773
 
@@ -1263,6 +1268,7 @@ module Aws::Imagebuilder
1263
1268
  ImageRecipe.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
1264
1269
  ImageRecipe.add_member(:additional_instance_configuration, Shapes::ShapeRef.new(shape: AdditionalInstanceConfiguration, location_name: "additionalInstanceConfiguration"))
1265
1270
  ImageRecipe.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
1271
+ ImageRecipe.add_member(:ami_watermarks, Shapes::ShapeRef.new(shape: AmiWatermarksList, location_name: "amiWatermarks"))
1266
1272
  ImageRecipe.struct_class = Types::ImageRecipe
1267
1273
 
1268
1274
  ImageRecipeSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
@@ -1423,7 +1423,12 @@ module Aws::Imagebuilder
1423
1423
  # @return [String]
1424
1424
  #
1425
1425
  # @!attribute [rw] logging_configuration
1426
- # Define logging configuration for the image build process.
1426
+ # Specifies the logging configuration for the image pipeline. Use this
1427
+ # to define custom CloudWatch Logs log groups for your pipeline
1428
+ # execution logs and image build logs. The service manages log groups
1429
+ # with names starting with `/aws/imagebuilder/` using the
1430
+ # service-linked role. For custom log group names outside of this
1431
+ # prefix, you must also provide an `executionRole`.
1427
1432
  # @return [Types::PipelineLoggingConfiguration]
1428
1433
  #
1429
1434
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateImagePipelineRequest AWS API Documentation
@@ -1547,6 +1552,18 @@ module Aws::Imagebuilder
1547
1552
  # the Build phase prior to image distribution.
1548
1553
  # @return [Hash<String,String>]
1549
1554
  #
1555
+ # @!attribute [rw] ami_watermarks
1556
+ # The AMI watermark names to attach to the output AMI from this
1557
+ # recipe. AMI watermarks are lineage markers. They automatically
1558
+ # propagate to derivative AMIs when the source AMI is copied or
1559
+ # distributed across Regions or accounts.
1560
+ #
1561
+ # <note markdown="1"> AMI watermarks are supported only for image recipes. AMIs with
1562
+ # watermarks cannot be made public.
1563
+ #
1564
+ # </note>
1565
+ # @return [Array<String>]
1566
+ #
1550
1567
  # @!attribute [rw] client_token
1551
1568
  # Unique, case-sensitive identifier you provide to ensure idempotency
1552
1569
  # of the request. For more information, see [Ensuring idempotency][1]
@@ -1573,6 +1590,7 @@ module Aws::Imagebuilder
1573
1590
  :working_directory,
1574
1591
  :additional_instance_configuration,
1575
1592
  :ami_tags,
1593
+ :ami_watermarks,
1576
1594
  :client_token)
1577
1595
  SENSITIVE = []
1578
1596
  include Aws::Structure
@@ -2439,16 +2457,22 @@ module Aws::Imagebuilder
2439
2457
  end
2440
2458
 
2441
2459
  # @!attribute [rw] source_image
2442
- # The source image Amazon Resource Name (ARN) to distribute.
2460
+ # The source image to distribute. Specify an AMI identifier, SSM
2461
+ # parameter path, or Image Builder image Amazon Resource Name (ARN).
2462
+ # When you specify an Image Builder image Amazon Resource Name (ARN),
2463
+ # the image must be in the `AVAILABLE` state.
2443
2464
  # @return [String]
2444
2465
  #
2445
2466
  # @!attribute [rw] distribution_configuration_arn
2446
- # The Amazon Resource Name (ARN) of the distribution configuration to
2447
- # use.
2467
+ # The Amazon Resource Name (ARN) of the distribution configuration.
2468
+ # The configuration defines target Regions, accounts, and AMI
2469
+ # settings. The distribution configuration must be in the same Region
2470
+ # as this operation.
2448
2471
  # @return [String]
2449
2472
  #
2450
2473
  # @!attribute [rw] execution_role
2451
- # The IAM role to use for the distribution.
2474
+ # The name or Amazon Resource Name (ARN) of the IAM role that Image
2475
+ # Builder assumes to distribute the image.
2452
2476
  # @return [String]
2453
2477
  #
2454
2478
  # @!attribute [rw] tags
@@ -4142,6 +4166,12 @@ module Aws::Imagebuilder
4142
4166
  # the Build phase prior to image distribution.
4143
4167
  # @return [Hash<String,String>]
4144
4168
  #
4169
+ # @!attribute [rw] ami_watermarks
4170
+ # The AMI watermark names attached to the output AMI from this recipe.
4171
+ # AMI watermarks are lineage markers that automatically propagate to
4172
+ # derivative AMIs when the source AMI is copied or distributed.
4173
+ # @return [Array<String>]
4174
+ #
4145
4175
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageRecipe AWS API Documentation
4146
4176
  #
4147
4177
  class ImageRecipe < Struct.new(
@@ -4159,7 +4189,8 @@ module Aws::Imagebuilder
4159
4189
  :tags,
4160
4190
  :working_directory,
4161
4191
  :additional_instance_configuration,
4162
- :ami_tags)
4192
+ :ami_tags,
4193
+ :ami_watermarks)
4163
4194
  SENSITIVE = []
4164
4195
  include Aws::Structure
4165
4196
  end
@@ -7421,15 +7452,22 @@ module Aws::Imagebuilder
7421
7452
  # The logging configuration that's defined for pipeline execution.
7422
7453
  #
7423
7454
  # @!attribute [rw] image_log_group_name
7424
- # The log group name that Image Builder uses for image creation. If
7425
- # not specified, the log group name defaults to
7426
- # `/aws/imagebuilder/image-name`.
7455
+ # Specifies the CloudWatch Logs log group name for image build logs.
7456
+ # The log group name can contain alphanumeric characters, hyphens,
7457
+ # underscores, forward slashes, and periods, up to 512 characters. Log
7458
+ # group names not starting with `/aws/imagebuilder/` require an
7459
+ # `executionRole` with CloudWatch Logs write permissions. If not
7460
+ # specified, defaults to `/aws/imagebuilder/image-name`.
7427
7461
  # @return [String]
7428
7462
  #
7429
7463
  # @!attribute [rw] pipeline_log_group_name
7430
- # The log group name that Image Builder uses for the log output during
7431
- # creation of a new pipeline. If not specified, the pipeline log group
7432
- # name defaults to `/aws/imagebuilder/pipeline/pipeline-name`.
7464
+ # Specifies the CloudWatch Logs log group name for pipeline execution
7465
+ # logs. The log group name can contain alphanumeric characters,
7466
+ # hyphens, underscores, forward slashes, and periods, up to 512
7467
+ # characters. Log group names not starting with `/aws/imagebuilder/`
7468
+ # require an `executionRole` with CloudWatch Logs write permissions.
7469
+ # If not specified, defaults to
7470
+ # `/aws/imagebuilder/pipeline/pipeline-name`.
7433
7471
  # @return [String]
7434
7472
  #
7435
7473
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/PipelineLoggingConfiguration AWS API Documentation
@@ -8018,17 +8056,23 @@ module Aws::Imagebuilder
8018
8056
  # @return [String]
8019
8057
  #
8020
8058
  # @!attribute [rw] image_build_version_arn
8021
- # The Amazon Resource Name (ARN) of the image build version to send
8022
- # action for.
8059
+ # The Amazon Resource Name (ARN) of the image build version associated
8060
+ # with the workflow step execution. This value must match the image
8061
+ # that owns the waiting step. If the ARN does not correspond to the
8062
+ # image running the workflow, then the request fails with a validation
8063
+ # error.
8023
8064
  # @return [String]
8024
8065
  #
8025
8066
  # @!attribute [rw] action
8026
- # The action for the image creation process to take while a workflow
8027
- # `WaitForAction` step waits for an asynchronous action to complete.
8067
+ # The action to perform on the paused workflow step. The workflow step
8068
+ # must be in a waiting state to accept an action. The request fails if
8069
+ # the step has already timed out or been actioned.
8028
8070
  # @return [String]
8029
8071
  #
8030
8072
  # @!attribute [rw] reason
8031
- # The reason why this action is sent.
8073
+ # The reason for the action. This value is stored with the step
8074
+ # execution record and is accessible in subsequent workflow steps via
8075
+ # step output references.
8032
8076
  # @return [String]
8033
8077
  #
8034
8078
  # @!attribute [rw] client_token
@@ -8244,12 +8288,17 @@ module Aws::Imagebuilder
8244
8288
  end
8245
8289
 
8246
8290
  # @!attribute [rw] resource_arn
8247
- # The Amazon Resource Name (ARN) of the Image Builder resource that is
8248
- # updated. The state update might also impact associated resources.
8291
+ # The Amazon Resource Name (ARN) of the image build version to update.
8292
+ # The image must be in one of these terminal states: `AVAILABLE`,
8293
+ # `DEPRECATED`, `DISABLED`, `FAILED`, or `CANCELLED`. Images with
8294
+ # `FAILED` or `CANCELLED` status can transition only to `DELETED`.
8249
8295
  # @return [String]
8250
8296
  #
8251
8297
  # @!attribute [rw] state
8252
- # Indicates the lifecycle action to take for this request.
8298
+ # Specifies the lifecycle action to take for this request. For
8299
+ # AMI-based images, valid values are `AVAILABLE`, `DEPRECATED`,
8300
+ # `DISABLED`, and `DELETED`. For container-based images, only
8301
+ # `DELETED` is supported.
8253
8302
  # @return [Types::ResourceState]
8254
8303
  #
8255
8304
  # @!attribute [rw] execution_role
@@ -8258,7 +8307,14 @@ module Aws::Imagebuilder
8258
8307
  # @return [String]
8259
8308
  #
8260
8309
  # @!attribute [rw] include_resources
8261
- # A list of image resources to update state for.
8310
+ # Specifies which image resources to include in the state update. When
8311
+ # specified, the lifecycle action applies to underlying resources.
8312
+ # These resources include AMIs, snapshots, and containers in addition
8313
+ # to the Image Builder image resource. Requires `executionRole` to
8314
+ # also be specified. To delete an image and its underlying resources,
8315
+ # you must specify `includeResources`. To delete only the Image
8316
+ # Builder image record without affecting underlying resources, use the
8317
+ # `DeleteImage` API instead.
8262
8318
  # @return [Types::ResourceStateUpdateIncludeResources]
8263
8319
  #
8264
8320
  # @!attribute [rw] exclusion_rules
@@ -8267,8 +8323,9 @@ module Aws::Imagebuilder
8267
8323
  # @return [Types::ResourceStateUpdateExclusionRules]
8268
8324
  #
8269
8325
  # @!attribute [rw] update_at
8270
- # The timestamp that indicates when resources are updated by a
8271
- # lifecycle action.
8326
+ # Specifies the timestamp when the state transition takes effect. Use
8327
+ # this parameter only when the target status is `DEPRECATED`. The
8328
+ # value must be a future time.
8272
8329
  # @return [Time]
8273
8330
  #
8274
8331
  # @!attribute [rw] client_token
@@ -54,7 +54,7 @@ module Aws::Imagebuilder
54
54
  autoload :EndpointProvider, 'aws-sdk-imagebuilder/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-imagebuilder/endpoints'
56
56
 
57
- GEM_VERSION = '1.107.0'
57
+ GEM_VERSION = '1.108.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -305,6 +305,7 @@ module Aws
305
305
  user_data_override: ::String?
306
306
  },
307
307
  ?ami_tags: Hash[::String, ::String],
308
+ ?ami_watermarks: Array[::String],
308
309
  client_token: ::String
309
310
  ) -> _CreateImageRecipeResponseSuccess
310
311
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImageRecipeResponseSuccess
data/sig/types.rbs CHANGED
@@ -320,6 +320,7 @@ module Aws::Imagebuilder
320
320
  attr_accessor working_directory: ::String
321
321
  attr_accessor additional_instance_configuration: Types::AdditionalInstanceConfiguration
322
322
  attr_accessor ami_tags: ::Hash[::String, ::String]
323
+ attr_accessor ami_watermarks: ::Array[::String]
323
324
  attr_accessor client_token: ::String
324
325
  SENSITIVE: []
325
326
  end
@@ -972,6 +973,7 @@ module Aws::Imagebuilder
972
973
  attr_accessor working_directory: ::String
973
974
  attr_accessor additional_instance_configuration: Types::AdditionalInstanceConfiguration
974
975
  attr_accessor ami_tags: ::Hash[::String, ::String]
976
+ attr_accessor ami_watermarks: ::Array[::String]
975
977
  SENSITIVE: []
976
978
  end
977
979
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-imagebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.107.0
4
+ version: 1.108.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services