@@ -1678,7 +1678,9 @@ export interface FrameworkControl {
1678
1678
/**
1679
1679
* <p>The scope of a control. The control scope defines what the control will evaluate. Three
1680
1680
* examples of control scopes are: a specific backup plan, all backup plans with a specific
1681
- * tag, or all backup plans. For more information, see <code>ControlScope</code>.</p>
1681
+ * tag, or all backup plans. For more information, see <a href="aws-backup/latest/devguide/API_ControlScope.html">
1682
+ * <code>ControlScope</code>.</a>
1683
+ * </p>
1682
1684
*/
1683
1685
ControlScope ?: ControlScope ;
1684
1686
}
@@ -3942,6 +3944,18 @@ export interface ListBackupJobsInput {
3942
3944
* all jobs across the organization.</p>
3943
3945
*/
3944
3946
ByAccountId ?: string ;
3947
+
3948
+ /**
3949
+ * <p>Returns only backup jobs completed after a date expressed in Unix format and Coordinated
3950
+ * Universal Time (UTC).</p>
3951
+ */
3952
+ ByCompleteAfter ?: Date ;
3953
+
3954
+ /**
3955
+ * <p>Returns only backup jobs completed before a date expressed in Unix format and
3956
+ * Coordinated Universal Time (UTC).</p>
3957
+ */
3958
+ ByCompleteBefore ?: Date ;
3945
3959
}
3946
3960
3947
3961
export namespace ListBackupJobsInput {
@@ -4339,6 +4353,18 @@ export interface ListCopyJobsInput {
4339
4353
* specified account ID.</p>
4340
4354
*/
4341
4355
ByAccountId ?: string ;
4356
+
4357
+ /**
4358
+ * <p>Returns only copy jobs completed before a date expressed in Unix format and Coordinated
4359
+ * Universal Time (UTC).</p>
4360
+ */
4361
+ ByCompleteBefore ?: Date ;
4362
+
4363
+ /**
4364
+ * <p>Returns only copy jobs completed after a date expressed in Unix format and Coordinated
4365
+ * Universal Time (UTC).</p>
4366
+ */
4367
+ ByCompleteAfter ?: Date ;
4342
4368
}
4343
4369
4344
4370
export namespace ListCopyJobsInput {
@@ -5060,6 +5086,18 @@ export interface ListRestoreJobsInput {
5060
5086
* <p>Returns only restore jobs associated with the specified job status.</p>
5061
5087
*/
5062
5088
ByStatus ?: RestoreJobStatus | string ;
5089
+
5090
+ /**
5091
+ * <p>Returns only copy jobs completed before a date expressed in Unix format and Coordinated
5092
+ * Universal Time (UTC).</p>
5093
+ */
5094
+ ByCompleteBefore ?: Date ;
5095
+
5096
+ /**
5097
+ * <p>Returns only copy jobs completed after a date expressed in Unix format and Coordinated
5098
+ * Universal Time (UTC).</p>
5099
+ */
5100
+ ByCompleteAfter ?: Date ;
5063
5101
}
5064
5102
5065
5103
export namespace ListRestoreJobsInput {
0 commit comments