Skip to content

Commit 52fffb8

Browse files
author
AWS
committed
AWSDeadlineCloud Update: Adds support for tag management on workers and tag inheritance from fleets to their associated workers.
1 parent 91d41f9 commit 52fffb8

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWSDeadlineCloud",
4+
"contributor": "",
5+
"description": "Adds support for tag management on workers and tag inheritance from fleets to their associated workers."
6+
}

services/deadline/src/main/resources/codegen-resources/service-2.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3986,6 +3986,10 @@
39863986
"idempotencyToken":true,
39873987
"location":"header",
39883988
"locationName":"X-Amz-Client-Token"
3989+
},
3990+
"tags":{
3991+
"shape":"Tags",
3992+
"documentation":"<p>Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.</p>"
39893993
}
39903994
}
39913995
},
@@ -4034,6 +4038,10 @@
40344038
"storageProfileId":{
40354039
"shape":"StorageProfileId",
40364040
"documentation":"<p>The storage profile ID.</p>"
4041+
},
4042+
"tagPropagationMode":{
4043+
"shape":"TagPropagationMode",
4044+
"documentation":"<p>Specifies whether tags associated with a fleet are attached to workers when the worker is launched. </p> <p>When the <code>tagPropagationMode</code> is set to <code>PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH</code> any tag associated with a fleet is attached to workers when they launch. If the tags for a fleet change, the tags associated with running workers <b>do not</b> change.</p> <p>If you don't specify <code>tagPropagationMode</code>, the default is <code>NO_PROPAGATION</code>.</p>"
40374045
}
40384046
},
40394047
"documentation":"<p>The details of a customer managed fleet configuration.</p>"
@@ -7514,7 +7522,7 @@
75147522
},
75157523
"JobTemplate":{
75167524
"type":"string",
7517-
"max":300000,
7525+
"max":1000000,
75187526
"min":1,
75197527
"sensitive":true
75207528
},
@@ -11353,6 +11361,13 @@
1135311361
"type":"timestamp",
1135411362
"timestampFormat":"iso8601"
1135511363
},
11364+
"TagPropagationMode":{
11365+
"type":"string",
11366+
"enum":[
11367+
"NO_PROPAGATION",
11368+
"PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH"
11369+
]
11370+
},
1135611371
"TagResourceRequest":{
1135711372
"type":"structure",
1135811373
"required":["resourceArn"],

0 commit comments

Comments
 (0)