Skip to content

Commit 36c9b5a

Browse files
author
awstools
committedDec 16, 2024
feat(client-dlm): This release adds support for Local Zones in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.
1 parent 7567d64 commit 36c9b5a

File tree

5 files changed

+92
-40
lines changed

5 files changed

+92
-40
lines changed
 

‎clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export interface CreateLifecyclePolicyCommandOutput extends CreateLifecyclePolic
6868
* "VOLUME" || "INSTANCE",
6969
* ],
7070
* ResourceLocations: [ // ResourceLocationList
71-
* "CLOUD" || "OUTPOST",
71+
* "CLOUD" || "OUTPOST" || "LOCAL_ZONE",
7272
* ],
7373
* TargetTags: [ // TargetTagList
7474
* { // Tag
@@ -93,7 +93,7 @@ export interface CreateLifecyclePolicyCommandOutput extends CreateLifecyclePolic
9393
* },
9494
* ],
9595
* CreateRule: { // CreateRule
96-
* Location: "CLOUD" || "OUTPOST_LOCAL",
96+
* Location: "CLOUD" || "OUTPOST_LOCAL" || "LOCAL_ZONE",
9797
* Interval: Number("int"),
9898
* IntervalUnit: "HOURS",
9999
* Times: [ // TimesList

‎clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo
5555
* // "VOLUME" || "INSTANCE",
5656
* // ],
5757
* // ResourceLocations: [ // ResourceLocationList
58-
* // "CLOUD" || "OUTPOST",
58+
* // "CLOUD" || "OUTPOST" || "LOCAL_ZONE",
5959
* // ],
6060
* // TargetTags: [ // TargetTagList
6161
* // { // Tag
@@ -80,7 +80,7 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyRespo
8080
* // },
8181
* // ],
8282
* // CreateRule: { // CreateRule
83-
* // Location: "CLOUD" || "OUTPOST_LOCAL",
83+
* // Location: "CLOUD" || "OUTPOST_LOCAL" || "LOCAL_ZONE",
8484
* // Interval: Number("int"),
8585
* // IntervalUnit: "HOURS",
8686
* // Times: [ // TimesList

‎clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface UpdateLifecyclePolicyCommandOutput extends UpdateLifecyclePolic
4848
* "VOLUME" || "INSTANCE",
4949
* ],
5050
* ResourceLocations: [ // ResourceLocationList
51-
* "CLOUD" || "OUTPOST",
51+
* "CLOUD" || "OUTPOST" || "LOCAL_ZONE",
5252
* ],
5353
* TargetTags: [ // TargetTagList
5454
* { // Tag
@@ -73,7 +73,7 @@ export interface UpdateLifecyclePolicyCommandOutput extends UpdateLifecyclePolic
7373
* },
7474
* ],
7575
* CreateRule: { // CreateRule
76-
* Location: "CLOUD" || "OUTPOST_LOCAL",
76+
* Location: "CLOUD" || "OUTPOST_LOCAL" || "LOCAL_ZONE",
7777
* Interval: Number("int"),
7878
* IntervalUnit: "HOURS",
7979
* Times: [ // TimesList

‎clients/client-dlm/src/models/models_0.ts

+67-27
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ export type PolicyTypeValues = (typeof PolicyTypeValues)[keyof typeof PolicyType
419419
*/
420420
export const ResourceLocationValues = {
421421
CLOUD: "CLOUD",
422+
LOCAL_ZONE: "LOCAL_ZONE",
422423
OUTPOST: "OUTPOST",
423424
} as const;
424425

@@ -460,6 +461,7 @@ export type IntervalUnitValues = (typeof IntervalUnitValues)[keyof typeof Interv
460461
*/
461462
export const LocationValues = {
462463
CLOUD: "CLOUD",
464+
LOCAL_ZONE: "LOCAL_ZONE",
463465
OUTPOST_LOCAL: "OUTPOST_LOCAL",
464466
} as const;
465467

@@ -646,14 +648,39 @@ export interface Script {
646648
export interface CreateRule {
647649
/**
648650
* <p>
649-
* <b>[Custom snapshot policies only]</b> Specifies the destination for snapshots created by the policy. To create
650-
* snapshots in the same Region as the source resource, specify <code>CLOUD</code>. To create
651-
* snapshots on the same Outpost as the source resource, specify <code>OUTPOST_LOCAL</code>.
652-
* If you omit this parameter, <code>CLOUD</code> is used by default.</p>
653-
* <p>If the policy targets resources in an Amazon Web Services Region, then you must create
654-
* snapshots in the same Region as the source resource. If the policy targets resources on an
655-
* Outpost, then you can create snapshots on the same Outpost as the source resource, or in
656-
* the Region of that Outpost.</p>
651+
* <b>[Custom snapshot policies only]</b> Specifies the destination for snapshots created by the policy. The
652+
* allowed destinations depend on the location of the targeted resources.</p>
653+
* <ul>
654+
* <li>
655+
* <p>If the policy targets resources in a Region, then you must create snapshots
656+
* in the same Region as the source resource.</p>
657+
* </li>
658+
* <li>
659+
* <p>If the policy targets resources in a Local Zone, you can create snapshots in
660+
* the same Local Zone or in its parent Region.</p>
661+
* </li>
662+
* <li>
663+
* <p>If the policy targets resources on an Outpost, then you can create snapshots
664+
* on the same Outpost or in its parent Region.</p>
665+
* </li>
666+
* </ul>
667+
* <p>Specify one of the following values:</p>
668+
* <ul>
669+
* <li>
670+
* <p>To create snapshots in the same Region as the source resource, specify
671+
* <code>CLOUD</code>.</p>
672+
* </li>
673+
* <li>
674+
* <p>To create snapshots in the same Local Zone as the source resource, specify
675+
* <code>LOCAL_ZONE</code>.</p>
676+
* </li>
677+
* <li>
678+
* <p>To create snapshots on the same Outpost as the source resource, specify
679+
* <code>OUTPOST_LOCAL</code>.</p>
680+
* </li>
681+
* </ul>
682+
* <p>Default: <code>CLOUD</code>
683+
* </p>
657684
* @public
658685
*/
659686
Location?: LocationValues | undefined;
@@ -680,8 +707,8 @@ export interface CreateRule {
680707

681708
/**
682709
* <p>The schedule, as a Cron expression. The schedule interval must be between 1 hour and 1
683-
* year. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions">Cron
684-
* expressions</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
710+
* year. For more information, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-cron-expressions.html">Cron expressions reference</a> in
711+
* the <i>Amazon EventBridge User Guide</i>.</p>
685712
* @public
686713
*/
687714
CronExpression?: string | undefined;
@@ -1011,11 +1038,11 @@ export interface Schedule {
10111038
FastRestoreRule?: FastRestoreRule | undefined;
10121039

10131040
/**
1014-
* <p>Specifies a rule for copying snapshots or AMIs across regions.</p>
1041+
* <p>Specifies a rule for copying snapshots or AMIs across Regions.</p>
10151042
* <note>
1016-
* <p>You can't specify cross-Region copy rules for policies that create snapshots on an Outpost.
1017-
* If the policy creates snapshots in a Region, then snapshots can be copied to up to three
1018-
* Regions or Outposts.</p>
1043+
* <p>You can't specify cross-Region copy rules for policies that create snapshots on an
1044+
* Outpost or in a Local Zone. If the policy creates snapshots in a Region, then snapshots
1045+
* can be copied to up to three Regions or Outposts.</p>
10191046
* </note>
10201047
* @public
10211048
*/
@@ -1054,8 +1081,7 @@ export interface Schedule {
10541081
*/
10551082
export interface PolicyDetails {
10561083
/**
1057-
* <p>
1058-
* <b>[Custom policies only]</b> The valid target resource types and actions a policy can manage. Specify <code>EBS_SNAPSHOT_MANAGEMENT</code>
1084+
* <p>The type of policy. Specify <code>EBS_SNAPSHOT_MANAGEMENT</code>
10591085
* to create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify <code>IMAGE_MANAGEMENT</code>
10601086
* to create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify <code>EVENT_BASED_POLICY </code>
10611087
* to create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account.</p>
@@ -1075,11 +1101,26 @@ export interface PolicyDetails {
10751101

10761102
/**
10771103
* <p>
1078-
* <b>[Custom snapshot and AMI policies only]</b> The location of the resources to backup. If the source resources are located in an
1079-
* Amazon Web Services Region, specify <code>CLOUD</code>. If the source resources are located on an Outpost
1080-
* in your account, specify <code>OUTPOST</code>.</p>
1081-
* <p>If you specify <code>OUTPOST</code>, Amazon Data Lifecycle Manager backs up all resources
1082-
* of the specified type with matching target tags across all of the Outposts in your account.</p>
1104+
* <b>[Custom snapshot and AMI policies only]</b> The location of the resources to backup.</p>
1105+
* <ul>
1106+
* <li>
1107+
* <p>If the source resources are located in a Region, specify <code>CLOUD</code>. In this case,
1108+
* the policy targets all resources of the specified type with matching target tags across all
1109+
* Availability Zones in the Region.</p>
1110+
* </li>
1111+
* <li>
1112+
* <p>
1113+
* <b>[Custom snapshot policies only]</b> If the source resources are located in a Local Zone, specify <code>LOCAL_ZONE</code>.
1114+
* In this case, the policy targets all resources of the specified type with matching target
1115+
* tags across all Local Zones in the Region.</p>
1116+
* </li>
1117+
* <li>
1118+
* <p>If the source resources are located on an Outpost in your account, specify <code>OUTPOST</code>.
1119+
* In this case, the policy targets all resources of the specified type with matching target
1120+
* tags across all of the Outposts in your account.</p>
1121+
* </li>
1122+
* </ul>
1123+
* <p></p>
10831124
* @public
10841125
*/
10851126
ResourceLocations?: ResourceLocationValues[] | undefined;
@@ -1712,8 +1753,7 @@ export interface GetLifecyclePolicyRequest {
17121753
}
17131754

17141755
/**
1715-
* <p>
1716-
* <b>[Custom policies only]</b> Detailed information about a snapshot, AMI, or event-based lifecycle policy.</p>
1756+
* <p>Information about a lifecycle policy.</p>
17171757
* @public
17181758
*/
17191759
export interface LifecyclePolicy {
@@ -1779,16 +1819,16 @@ export interface LifecyclePolicy {
17791819
PolicyArn?: string | undefined;
17801820

17811821
/**
1782-
* <p>
1783-
* <b>[Default policies only]</b> The type of default policy. Values include:</p>
1822+
* <p>Indicates whether the policy is a default lifecycle policy or a custom
1823+
* lifecycle policy.</p>
17841824
* <ul>
17851825
* <li>
17861826
* <p>
1787-
* <code>VOLUME</code> - Default policy for EBS snapshots</p>
1827+
* <code>true</code> - the policy is a default policy.</p>
17881828
* </li>
17891829
* <li>
17901830
* <p>
1791-
* <code>INSTANCE</code> - Default policy for EBS-backed AMIs</p>
1831+
* <code>false</code> - the policy is a custom policy.</p>
17921832
* </li>
17931833
* </ul>
17941834
* @public

‎codegen/sdk-codegen/aws-models/dlm.json

+19-7
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@
306306
"Location": {
307307
"target": "com.amazonaws.dlm#LocationValues",
308308
"traits": {
309-
"smithy.api#documentation": "<p>\n <b>[Custom snapshot policies only]</b> Specifies the destination for snapshots created by the policy. To create \n\t\t\tsnapshots in the same Region as the source resource, specify <code>CLOUD</code>. To create \n\t\t\tsnapshots on the same Outpost as the source resource, specify <code>OUTPOST_LOCAL</code>. \n\t\t\tIf you omit this parameter, <code>CLOUD</code> is used by default.</p>\n <p>If the policy targets resources in an Amazon Web Services Region, then you must create \n\t\t\tsnapshots in the same Region as the source resource. If the policy targets resources on an \n\t\t\tOutpost, then you can create snapshots on the same Outpost as the source resource, or in \n\t\t\tthe Region of that Outpost.</p>"
309+
"smithy.api#documentation": "<p>\n <b>[Custom snapshot policies only]</b> Specifies the destination for snapshots created by the policy. The \n\t\t\tallowed destinations depend on the location of the targeted resources.</p>\n <ul>\n <li>\n <p>If the policy targets resources in a Region, then you must create snapshots \n\t\t\t\t\tin the same Region as the source resource.</p>\n </li>\n <li>\n <p>If the policy targets resources in a Local Zone, you can create snapshots in \n\t\t\t\t\tthe same Local Zone or in its parent Region.</p>\n </li>\n <li>\n <p>If the policy targets resources on an Outpost, then you can create snapshots \n\t\t\t\t\ton the same Outpost or in its parent Region.</p>\n </li>\n </ul>\n <p>Specify one of the following values:</p>\n <ul>\n <li>\n <p>To create snapshots in the same Region as the source resource, specify \n\t\t\t\t\t<code>CLOUD</code>.</p>\n </li>\n <li>\n <p>To create snapshots in the same Local Zone as the source resource, specify \n\t\t\t\t\t<code>LOCAL_ZONE</code>.</p>\n </li>\n <li>\n <p>To create snapshots on the same Outpost as the source resource, specify \n\t\t\t\t\t<code>OUTPOST_LOCAL</code>.</p>\n </li>\n </ul>\n <p>Default: <code>CLOUD</code>\n </p>"
310310
}
311311
},
312312
"Interval": {
@@ -330,7 +330,7 @@
330330
"CronExpression": {
331331
"target": "com.amazonaws.dlm#CronExpression",
332332
"traits": {
333-
"smithy.api#documentation": "<p>The schedule, as a Cron expression. The schedule interval must be between 1 hour and 1\n\t\t\tyear. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions\">Cron\n\t\t\t\texpressions</a> in the <i>Amazon CloudWatch User Guide</i>.</p>"
333+
"smithy.api#documentation": "<p>The schedule, as a Cron expression. The schedule interval must be between 1 hour and 1\n\t\t\tyear. For more information, see the <a href=\"https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-cron-expressions.html\">Cron expressions reference</a> in \n\t\t\tthe <i>Amazon EventBridge User Guide</i>.</p>"
334334
}
335335
},
336336
"Scripts": {
@@ -1204,12 +1204,12 @@
12041204
"DefaultPolicy": {
12051205
"target": "com.amazonaws.dlm#DefaultPolicy",
12061206
"traits": {
1207-
"smithy.api#documentation": "<p>\n <b>[Default policies only]</b> The type of default policy. Values include:</p>\n <ul>\n <li>\n <p>\n <code>VOLUME</code> - Default policy for EBS snapshots</p>\n </li>\n <li>\n <p>\n <code>INSTANCE</code> - Default policy for EBS-backed AMIs</p>\n </li>\n </ul>"
1207+
"smithy.api#documentation": "<p>Indicates whether the policy is a default lifecycle policy or a custom \n\t\t\tlifecycle policy.</p>\n <ul>\n <li>\n <p>\n <code>true</code> - the policy is a default policy.</p>\n </li>\n <li>\n <p>\n <code>false</code> - the policy is a custom policy.</p>\n </li>\n </ul>"
12081208
}
12091209
}
12101210
},
12111211
"traits": {
1212-
"smithy.api#documentation": "<p>\n <b>[Custom policies only]</b> Detailed information about a snapshot, AMI, or event-based lifecycle policy.</p>"
1212+
"smithy.api#documentation": "<p>Information about a lifecycle policy.</p>"
12131213
}
12141214
},
12151215
"com.amazonaws.dlm#LifecyclePolicySummary": {
@@ -1356,6 +1356,12 @@
13561356
"traits": {
13571357
"smithy.api#enumValue": "OUTPOST_LOCAL"
13581358
}
1359+
},
1360+
"LOCAL_ZONE": {
1361+
"target": "smithy.api#Unit",
1362+
"traits": {
1363+
"smithy.api#enumValue": "LOCAL_ZONE"
1364+
}
13591365
}
13601366
}
13611367
},
@@ -1423,7 +1429,7 @@
14231429
"PolicyType": {
14241430
"target": "com.amazonaws.dlm#PolicyTypeValues",
14251431
"traits": {
1426-
"smithy.api#documentation": "<p>\n <b>[Custom policies only]</b> The valid target resource types and actions a policy can manage. Specify <code>EBS_SNAPSHOT_MANAGEMENT</code> \n\t\t\tto create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify <code>IMAGE_MANAGEMENT</code> \n\t\t\tto create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify <code>EVENT_BASED_POLICY </code> \n\t\t\tto create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account.</p>\n <p>The default is <code>EBS_SNAPSHOT_MANAGEMENT</code>.</p>"
1432+
"smithy.api#documentation": "<p>The type of policy. Specify <code>EBS_SNAPSHOT_MANAGEMENT</code> \n\t\t\tto create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify <code>IMAGE_MANAGEMENT</code> \n\t\t\tto create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify <code>EVENT_BASED_POLICY </code> \n\t\t\tto create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account.</p>\n <p>The default is <code>EBS_SNAPSHOT_MANAGEMENT</code>.</p>"
14271433
}
14281434
},
14291435
"ResourceTypes": {
@@ -1435,7 +1441,7 @@
14351441
"ResourceLocations": {
14361442
"target": "com.amazonaws.dlm#ResourceLocationList",
14371443
"traits": {
1438-
"smithy.api#documentation": "<p>\n <b>[Custom snapshot and AMI policies only]</b> The location of the resources to backup. If the source resources are located in an \n\t\t\tAmazon Web Services Region, specify <code>CLOUD</code>. If the source resources are located on an Outpost \n\t\t\tin your account, specify <code>OUTPOST</code>.</p>\n <p>If you specify <code>OUTPOST</code>, Amazon Data Lifecycle Manager backs up all resources \n\t\t\t\tof the specified type with matching target tags across all of the Outposts in your account.</p>"
1444+
"smithy.api#documentation": "<p>\n <b>[Custom snapshot and AMI policies only]</b> The location of the resources to backup.</p>\n <ul>\n <li>\n <p>If the source resources are located in a Region, specify <code>CLOUD</code>. In this case, \n\t\t\t\t\tthe policy targets all resources of the specified type with matching target tags across all \n\t\t\t\t\tAvailability Zones in the Region.</p>\n </li>\n <li>\n <p>\n <b>[Custom snapshot policies only]</b> If the source resources are located in a Local Zone, specify <code>LOCAL_ZONE</code>. \n\t\t\t\t\tIn this case, the policy targets all resources of the specified type with matching target \n\t\t\t\t\ttags across all Local Zones in the Region.</p>\n </li>\n <li>\n <p>If the source resources are located on an Outpost in your account, specify <code>OUTPOST</code>. \n\t\t\t\t\tIn this case, the policy targets all resources of the specified type with matching target \n\t\t\t\t\ttags across all of the Outposts in your account.</p>\n </li>\n </ul>\n <p></p>"
14391445
}
14401446
},
14411447
"TargetTags": {
@@ -1603,6 +1609,12 @@
16031609
"traits": {
16041610
"smithy.api#enumValue": "OUTPOST"
16051611
}
1612+
},
1613+
"LOCAL_ZONE": {
1614+
"target": "smithy.api#Unit",
1615+
"traits": {
1616+
"smithy.api#enumValue": "LOCAL_ZONE"
1617+
}
16061618
}
16071619
}
16081620
},
@@ -1800,7 +1812,7 @@
18001812
"CrossRegionCopyRules": {
18011813
"target": "com.amazonaws.dlm#CrossRegionCopyRules",
18021814
"traits": {
1803-
"smithy.api#documentation": "<p>Specifies a rule for copying snapshots or AMIs across regions.</p>\n <note>\n <p>You can't specify cross-Region copy rules for policies that create snapshots on an Outpost. \n\t\t\tIf the policy creates snapshots in a Region, then snapshots can be copied to up to three \n\t\t\tRegions or Outposts.</p>\n </note>"
1815+
"smithy.api#documentation": "<p>Specifies a rule for copying snapshots or AMIs across Regions.</p>\n <note>\n <p>You can't specify cross-Region copy rules for policies that create snapshots on an \n\t\t\t\tOutpost or in a Local Zone. If the policy creates snapshots in a Region, then snapshots \n\t\t\t\tcan be copied to up to three Regions or Outposts.</p>\n </note>"
18041816
}
18051817
},
18061818
"ShareRules": {

0 commit comments

Comments
 (0)
Please sign in to comment.