@aws-sdk/client-backup 3.687.0 → 3.692.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.
- package/dist-types/models/models_0.d.ts +749 -749
- package/dist-types/ts3.4/models/models_0.d.ts +749 -749
- package/package.json +35 -35
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { BackupServiceException as __BaseException } from "./BackupServiceException";
|
|
3
3
|
export interface AdvancedBackupSetting {
|
|
4
|
-
ResourceType?: string;
|
|
5
|
-
BackupOptions?: Record<string, string
|
|
4
|
+
ResourceType?: string | undefined;
|
|
5
|
+
BackupOptions?: Record<string, string> | undefined;
|
|
6
6
|
}
|
|
7
7
|
export declare const AggregationPeriod: {
|
|
8
8
|
readonly FOURTEEN_DAYS: "FOURTEEN_DAYS";
|
|
@@ -14,21 +14,21 @@ export type AggregationPeriod =
|
|
|
14
14
|
export declare class AlreadyExistsException extends __BaseException {
|
|
15
15
|
readonly name: "AlreadyExistsException";
|
|
16
16
|
readonly $fault: "client";
|
|
17
|
-
Code?: string;
|
|
18
|
-
Message?: string;
|
|
19
|
-
CreatorRequestId?: string;
|
|
20
|
-
Arn?: string;
|
|
21
|
-
Type?: string;
|
|
22
|
-
Context?: string;
|
|
17
|
+
Code?: string | undefined;
|
|
18
|
+
Message?: string | undefined;
|
|
19
|
+
CreatorRequestId?: string | undefined;
|
|
20
|
+
Arn?: string | undefined;
|
|
21
|
+
Type?: string | undefined;
|
|
22
|
+
Context?: string | undefined;
|
|
23
23
|
constructor(
|
|
24
24
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
25
25
|
);
|
|
26
26
|
}
|
|
27
27
|
export interface RecoveryPointCreator {
|
|
28
|
-
BackupPlanId?: string;
|
|
29
|
-
BackupPlanArn?: string;
|
|
30
|
-
BackupPlanVersion?: string;
|
|
31
|
-
BackupRuleId?: string;
|
|
28
|
+
BackupPlanId?: string | undefined;
|
|
29
|
+
BackupPlanArn?: string | undefined;
|
|
30
|
+
BackupPlanVersion?: string | undefined;
|
|
31
|
+
BackupRuleId?: string | undefined;
|
|
32
32
|
}
|
|
33
33
|
export declare const BackupJobState: {
|
|
34
34
|
readonly ABORTED: "ABORTED";
|
|
@@ -44,31 +44,31 @@ export declare const BackupJobState: {
|
|
|
44
44
|
export type BackupJobState =
|
|
45
45
|
(typeof BackupJobState)[keyof typeof BackupJobState];
|
|
46
46
|
export interface BackupJob {
|
|
47
|
-
AccountId?: string;
|
|
48
|
-
BackupJobId?: string;
|
|
49
|
-
BackupVaultName?: string;
|
|
50
|
-
BackupVaultArn?: string;
|
|
51
|
-
RecoveryPointArn?: string;
|
|
52
|
-
ResourceArn?: string;
|
|
53
|
-
CreationDate?: Date;
|
|
54
|
-
CompletionDate?: Date;
|
|
55
|
-
State?: BackupJobState;
|
|
56
|
-
StatusMessage?: string;
|
|
57
|
-
PercentDone?: string;
|
|
58
|
-
BackupSizeInBytes?: number;
|
|
59
|
-
IamRoleArn?: string;
|
|
60
|
-
CreatedBy?: RecoveryPointCreator;
|
|
61
|
-
ExpectedCompletionDate?: Date;
|
|
62
|
-
StartBy?: Date;
|
|
63
|
-
ResourceType?: string;
|
|
64
|
-
BytesTransferred?: number;
|
|
65
|
-
BackupOptions?: Record<string, string
|
|
66
|
-
BackupType?: string;
|
|
67
|
-
ParentJobId?: string;
|
|
68
|
-
IsParent?: boolean;
|
|
69
|
-
ResourceName?: string;
|
|
70
|
-
InitiationDate?: Date;
|
|
71
|
-
MessageCategory?: string;
|
|
47
|
+
AccountId?: string | undefined;
|
|
48
|
+
BackupJobId?: string | undefined;
|
|
49
|
+
BackupVaultName?: string | undefined;
|
|
50
|
+
BackupVaultArn?: string | undefined;
|
|
51
|
+
RecoveryPointArn?: string | undefined;
|
|
52
|
+
ResourceArn?: string | undefined;
|
|
53
|
+
CreationDate?: Date | undefined;
|
|
54
|
+
CompletionDate?: Date | undefined;
|
|
55
|
+
State?: BackupJobState | undefined;
|
|
56
|
+
StatusMessage?: string | undefined;
|
|
57
|
+
PercentDone?: string | undefined;
|
|
58
|
+
BackupSizeInBytes?: number | undefined;
|
|
59
|
+
IamRoleArn?: string | undefined;
|
|
60
|
+
CreatedBy?: RecoveryPointCreator | undefined;
|
|
61
|
+
ExpectedCompletionDate?: Date | undefined;
|
|
62
|
+
StartBy?: Date | undefined;
|
|
63
|
+
ResourceType?: string | undefined;
|
|
64
|
+
BytesTransferred?: number | undefined;
|
|
65
|
+
BackupOptions?: Record<string, string> | undefined;
|
|
66
|
+
BackupType?: string | undefined;
|
|
67
|
+
ParentJobId?: string | undefined;
|
|
68
|
+
IsParent?: boolean | undefined;
|
|
69
|
+
ResourceName?: string | undefined;
|
|
70
|
+
InitiationDate?: Date | undefined;
|
|
71
|
+
MessageCategory?: string | undefined;
|
|
72
72
|
}
|
|
73
73
|
export declare const BackupJobStatus: {
|
|
74
74
|
readonly ABORTED: "ABORTED";
|
|
@@ -86,83 +86,83 @@ export declare const BackupJobStatus: {
|
|
|
86
86
|
export type BackupJobStatus =
|
|
87
87
|
(typeof BackupJobStatus)[keyof typeof BackupJobStatus];
|
|
88
88
|
export interface BackupJobSummary {
|
|
89
|
-
Region?: string;
|
|
90
|
-
AccountId?: string;
|
|
91
|
-
State?: BackupJobStatus;
|
|
92
|
-
ResourceType?: string;
|
|
93
|
-
MessageCategory?: string;
|
|
94
|
-
Count?: number;
|
|
95
|
-
StartTime?: Date;
|
|
96
|
-
EndTime?: Date;
|
|
89
|
+
Region?: string | undefined;
|
|
90
|
+
AccountId?: string | undefined;
|
|
91
|
+
State?: BackupJobStatus | undefined;
|
|
92
|
+
ResourceType?: string | undefined;
|
|
93
|
+
MessageCategory?: string | undefined;
|
|
94
|
+
Count?: number | undefined;
|
|
95
|
+
StartTime?: Date | undefined;
|
|
96
|
+
EndTime?: Date | undefined;
|
|
97
97
|
}
|
|
98
98
|
export interface Lifecycle {
|
|
99
|
-
MoveToColdStorageAfterDays?: number;
|
|
100
|
-
DeleteAfterDays?: number;
|
|
101
|
-
OptInToArchiveForSupportedResources?: boolean;
|
|
99
|
+
MoveToColdStorageAfterDays?: number | undefined;
|
|
100
|
+
DeleteAfterDays?: number | undefined;
|
|
101
|
+
OptInToArchiveForSupportedResources?: boolean | undefined;
|
|
102
102
|
}
|
|
103
103
|
export interface CopyAction {
|
|
104
|
-
Lifecycle?: Lifecycle;
|
|
104
|
+
Lifecycle?: Lifecycle | undefined;
|
|
105
105
|
DestinationBackupVaultArn: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface BackupRule {
|
|
108
108
|
RuleName: string | undefined;
|
|
109
109
|
TargetBackupVaultName: string | undefined;
|
|
110
|
-
ScheduleExpression?: string;
|
|
111
|
-
StartWindowMinutes?: number;
|
|
112
|
-
CompletionWindowMinutes?: number;
|
|
113
|
-
Lifecycle?: Lifecycle;
|
|
114
|
-
RecoveryPointTags?: Record<string, string
|
|
115
|
-
RuleId?: string;
|
|
116
|
-
CopyActions?: CopyAction[];
|
|
117
|
-
EnableContinuousBackup?: boolean;
|
|
118
|
-
ScheduleExpressionTimezone?: string;
|
|
110
|
+
ScheduleExpression?: string | undefined;
|
|
111
|
+
StartWindowMinutes?: number | undefined;
|
|
112
|
+
CompletionWindowMinutes?: number | undefined;
|
|
113
|
+
Lifecycle?: Lifecycle | undefined;
|
|
114
|
+
RecoveryPointTags?: Record<string, string> | undefined;
|
|
115
|
+
RuleId?: string | undefined;
|
|
116
|
+
CopyActions?: CopyAction[] | undefined;
|
|
117
|
+
EnableContinuousBackup?: boolean | undefined;
|
|
118
|
+
ScheduleExpressionTimezone?: string | undefined;
|
|
119
119
|
}
|
|
120
120
|
export interface BackupPlan {
|
|
121
121
|
BackupPlanName: string | undefined;
|
|
122
122
|
Rules: BackupRule[] | undefined;
|
|
123
|
-
AdvancedBackupSettings?: AdvancedBackupSetting[];
|
|
123
|
+
AdvancedBackupSettings?: AdvancedBackupSetting[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface BackupRuleInput {
|
|
126
126
|
RuleName: string | undefined;
|
|
127
127
|
TargetBackupVaultName: string | undefined;
|
|
128
|
-
ScheduleExpression?: string;
|
|
129
|
-
StartWindowMinutes?: number;
|
|
130
|
-
CompletionWindowMinutes?: number;
|
|
131
|
-
Lifecycle?: Lifecycle;
|
|
132
|
-
RecoveryPointTags?: Record<string, string
|
|
133
|
-
CopyActions?: CopyAction[];
|
|
134
|
-
EnableContinuousBackup?: boolean;
|
|
135
|
-
ScheduleExpressionTimezone?: string;
|
|
128
|
+
ScheduleExpression?: string | undefined;
|
|
129
|
+
StartWindowMinutes?: number | undefined;
|
|
130
|
+
CompletionWindowMinutes?: number | undefined;
|
|
131
|
+
Lifecycle?: Lifecycle | undefined;
|
|
132
|
+
RecoveryPointTags?: Record<string, string> | undefined;
|
|
133
|
+
CopyActions?: CopyAction[] | undefined;
|
|
134
|
+
EnableContinuousBackup?: boolean | undefined;
|
|
135
|
+
ScheduleExpressionTimezone?: string | undefined;
|
|
136
136
|
}
|
|
137
137
|
export interface BackupPlanInput {
|
|
138
138
|
BackupPlanName: string | undefined;
|
|
139
139
|
Rules: BackupRuleInput[] | undefined;
|
|
140
|
-
AdvancedBackupSettings?: AdvancedBackupSetting[];
|
|
140
|
+
AdvancedBackupSettings?: AdvancedBackupSetting[] | undefined;
|
|
141
141
|
}
|
|
142
142
|
export interface BackupPlansListMember {
|
|
143
|
-
BackupPlanArn?: string;
|
|
144
|
-
BackupPlanId?: string;
|
|
145
|
-
CreationDate?: Date;
|
|
146
|
-
DeletionDate?: Date;
|
|
147
|
-
VersionId?: string;
|
|
148
|
-
BackupPlanName?: string;
|
|
149
|
-
CreatorRequestId?: string;
|
|
150
|
-
LastExecutionDate?: Date;
|
|
151
|
-
AdvancedBackupSettings?: AdvancedBackupSetting[];
|
|
143
|
+
BackupPlanArn?: string | undefined;
|
|
144
|
+
BackupPlanId?: string | undefined;
|
|
145
|
+
CreationDate?: Date | undefined;
|
|
146
|
+
DeletionDate?: Date | undefined;
|
|
147
|
+
VersionId?: string | undefined;
|
|
148
|
+
BackupPlanName?: string | undefined;
|
|
149
|
+
CreatorRequestId?: string | undefined;
|
|
150
|
+
LastExecutionDate?: Date | undefined;
|
|
151
|
+
AdvancedBackupSettings?: AdvancedBackupSetting[] | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface BackupPlanTemplatesListMember {
|
|
154
|
-
BackupPlanTemplateId?: string;
|
|
155
|
-
BackupPlanTemplateName?: string;
|
|
154
|
+
BackupPlanTemplateId?: string | undefined;
|
|
155
|
+
BackupPlanTemplateName?: string | undefined;
|
|
156
156
|
}
|
|
157
157
|
export interface ConditionParameter {
|
|
158
|
-
ConditionKey?: string;
|
|
159
|
-
ConditionValue?: string;
|
|
158
|
+
ConditionKey?: string | undefined;
|
|
159
|
+
ConditionValue?: string | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface Conditions {
|
|
162
|
-
StringEquals?: ConditionParameter[];
|
|
163
|
-
StringNotEquals?: ConditionParameter[];
|
|
164
|
-
StringLike?: ConditionParameter[];
|
|
165
|
-
StringNotLike?: ConditionParameter[];
|
|
162
|
+
StringEquals?: ConditionParameter[] | undefined;
|
|
163
|
+
StringNotEquals?: ConditionParameter[] | undefined;
|
|
164
|
+
StringLike?: ConditionParameter[] | undefined;
|
|
165
|
+
StringNotLike?: ConditionParameter[] | undefined;
|
|
166
166
|
}
|
|
167
167
|
export declare const ConditionType: {
|
|
168
168
|
readonly STRINGEQUALS: "STRINGEQUALS";
|
|
@@ -176,18 +176,18 @@ export interface Condition {
|
|
|
176
176
|
export interface BackupSelection {
|
|
177
177
|
SelectionName: string | undefined;
|
|
178
178
|
IamRoleArn: string | undefined;
|
|
179
|
-
Resources?: string[];
|
|
180
|
-
ListOfTags?: Condition[];
|
|
181
|
-
NotResources?: string[];
|
|
182
|
-
Conditions?: Conditions;
|
|
179
|
+
Resources?: string[] | undefined;
|
|
180
|
+
ListOfTags?: Condition[] | undefined;
|
|
181
|
+
NotResources?: string[] | undefined;
|
|
182
|
+
Conditions?: Conditions | undefined;
|
|
183
183
|
}
|
|
184
184
|
export interface BackupSelectionsListMember {
|
|
185
|
-
SelectionId?: string;
|
|
186
|
-
SelectionName?: string;
|
|
187
|
-
BackupPlanId?: string;
|
|
188
|
-
CreationDate?: Date;
|
|
189
|
-
CreatorRequestId?: string;
|
|
190
|
-
IamRoleArn?: string;
|
|
185
|
+
SelectionId?: string | undefined;
|
|
186
|
+
SelectionName?: string | undefined;
|
|
187
|
+
BackupPlanId?: string | undefined;
|
|
188
|
+
CreationDate?: Date | undefined;
|
|
189
|
+
CreatorRequestId?: string | undefined;
|
|
190
|
+
IamRoleArn?: string | undefined;
|
|
191
191
|
}
|
|
192
192
|
export declare const BackupVaultEvent: {
|
|
193
193
|
readonly BACKUP_JOB_COMPLETED: "BACKUP_JOB_COMPLETED";
|
|
@@ -222,36 +222,36 @@ export declare const VaultType: {
|
|
|
222
222
|
};
|
|
223
223
|
export type VaultType = (typeof VaultType)[keyof typeof VaultType];
|
|
224
224
|
export interface BackupVaultListMember {
|
|
225
|
-
BackupVaultName?: string;
|
|
226
|
-
BackupVaultArn?: string;
|
|
227
|
-
VaultType?: VaultType;
|
|
228
|
-
VaultState?: VaultState;
|
|
229
|
-
CreationDate?: Date;
|
|
230
|
-
EncryptionKeyArn?: string;
|
|
231
|
-
CreatorRequestId?: string;
|
|
232
|
-
NumberOfRecoveryPoints?: number;
|
|
233
|
-
Locked?: boolean;
|
|
234
|
-
MinRetentionDays?: number;
|
|
235
|
-
MaxRetentionDays?: number;
|
|
236
|
-
LockDate?: Date;
|
|
225
|
+
BackupVaultName?: string | undefined;
|
|
226
|
+
BackupVaultArn?: string | undefined;
|
|
227
|
+
VaultType?: VaultType | undefined;
|
|
228
|
+
VaultState?: VaultState | undefined;
|
|
229
|
+
CreationDate?: Date | undefined;
|
|
230
|
+
EncryptionKeyArn?: string | undefined;
|
|
231
|
+
CreatorRequestId?: string | undefined;
|
|
232
|
+
NumberOfRecoveryPoints?: number | undefined;
|
|
233
|
+
Locked?: boolean | undefined;
|
|
234
|
+
MinRetentionDays?: number | undefined;
|
|
235
|
+
MaxRetentionDays?: number | undefined;
|
|
236
|
+
LockDate?: Date | undefined;
|
|
237
237
|
}
|
|
238
238
|
export interface CalculatedLifecycle {
|
|
239
|
-
MoveToColdStorageAt?: Date;
|
|
240
|
-
DeleteAt?: Date;
|
|
239
|
+
MoveToColdStorageAt?: Date | undefined;
|
|
240
|
+
DeleteAt?: Date | undefined;
|
|
241
241
|
}
|
|
242
242
|
export interface CancelLegalHoldInput {
|
|
243
243
|
LegalHoldId: string | undefined;
|
|
244
244
|
CancelDescription: string | undefined;
|
|
245
|
-
RetainRecordInDays?: number;
|
|
245
|
+
RetainRecordInDays?: number | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface CancelLegalHoldOutput {}
|
|
248
248
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
249
249
|
readonly name: "InvalidParameterValueException";
|
|
250
250
|
readonly $fault: "client";
|
|
251
|
-
Code?: string;
|
|
252
|
-
Message?: string;
|
|
253
|
-
Type?: string;
|
|
254
|
-
Context?: string;
|
|
251
|
+
Code?: string | undefined;
|
|
252
|
+
Message?: string | undefined;
|
|
253
|
+
Type?: string | undefined;
|
|
254
|
+
Context?: string | undefined;
|
|
255
255
|
constructor(
|
|
256
256
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
257
257
|
);
|
|
@@ -259,10 +259,10 @@ export declare class InvalidParameterValueException extends __BaseException {
|
|
|
259
259
|
export declare class InvalidResourceStateException extends __BaseException {
|
|
260
260
|
readonly name: "InvalidResourceStateException";
|
|
261
261
|
readonly $fault: "client";
|
|
262
|
-
Code?: string;
|
|
263
|
-
Message?: string;
|
|
264
|
-
Type?: string;
|
|
265
|
-
Context?: string;
|
|
262
|
+
Code?: string | undefined;
|
|
263
|
+
Message?: string | undefined;
|
|
264
|
+
Type?: string | undefined;
|
|
265
|
+
Context?: string | undefined;
|
|
266
266
|
constructor(
|
|
267
267
|
opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
|
|
268
268
|
);
|
|
@@ -270,10 +270,10 @@ export declare class InvalidResourceStateException extends __BaseException {
|
|
|
270
270
|
export declare class MissingParameterValueException extends __BaseException {
|
|
271
271
|
readonly name: "MissingParameterValueException";
|
|
272
272
|
readonly $fault: "client";
|
|
273
|
-
Code?: string;
|
|
274
|
-
Message?: string;
|
|
275
|
-
Type?: string;
|
|
276
|
-
Context?: string;
|
|
273
|
+
Code?: string | undefined;
|
|
274
|
+
Message?: string | undefined;
|
|
275
|
+
Type?: string | undefined;
|
|
276
|
+
Context?: string | undefined;
|
|
277
277
|
constructor(
|
|
278
278
|
opts: __ExceptionOptionType<MissingParameterValueException, __BaseException>
|
|
279
279
|
);
|
|
@@ -281,10 +281,10 @@ export declare class MissingParameterValueException extends __BaseException {
|
|
|
281
281
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
282
282
|
readonly name: "ResourceNotFoundException";
|
|
283
283
|
readonly $fault: "client";
|
|
284
|
-
Code?: string;
|
|
285
|
-
Message?: string;
|
|
286
|
-
Type?: string;
|
|
287
|
-
Context?: string;
|
|
284
|
+
Code?: string | undefined;
|
|
285
|
+
Message?: string | undefined;
|
|
286
|
+
Type?: string | undefined;
|
|
287
|
+
Context?: string | undefined;
|
|
288
288
|
constructor(
|
|
289
289
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
290
290
|
);
|
|
@@ -292,10 +292,10 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
292
292
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
293
293
|
readonly name: "ServiceUnavailableException";
|
|
294
294
|
readonly $fault: "server";
|
|
295
|
-
Code?: string;
|
|
296
|
-
Message?: string;
|
|
297
|
-
Type?: string;
|
|
298
|
-
Context?: string;
|
|
295
|
+
Code?: string | undefined;
|
|
296
|
+
Message?: string | undefined;
|
|
297
|
+
Type?: string | undefined;
|
|
298
|
+
Context?: string | undefined;
|
|
299
299
|
constructor(
|
|
300
300
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
301
301
|
);
|
|
@@ -303,20 +303,20 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
303
303
|
export declare class ConflictException extends __BaseException {
|
|
304
304
|
readonly name: "ConflictException";
|
|
305
305
|
readonly $fault: "client";
|
|
306
|
-
Code?: string;
|
|
307
|
-
Message?: string;
|
|
308
|
-
Type?: string;
|
|
309
|
-
Context?: string;
|
|
306
|
+
Code?: string | undefined;
|
|
307
|
+
Message?: string | undefined;
|
|
308
|
+
Type?: string | undefined;
|
|
309
|
+
Context?: string | undefined;
|
|
310
310
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
311
311
|
}
|
|
312
312
|
export interface ControlInputParameter {
|
|
313
|
-
ParameterName?: string;
|
|
314
|
-
ParameterValue?: string;
|
|
313
|
+
ParameterName?: string | undefined;
|
|
314
|
+
ParameterValue?: string | undefined;
|
|
315
315
|
}
|
|
316
316
|
export interface ControlScope {
|
|
317
|
-
ComplianceResourceIds?: string[];
|
|
318
|
-
ComplianceResourceTypes?: string[];
|
|
319
|
-
Tags?: Record<string, string
|
|
317
|
+
ComplianceResourceIds?: string[] | undefined;
|
|
318
|
+
ComplianceResourceTypes?: string[] | undefined;
|
|
319
|
+
Tags?: Record<string, string> | undefined;
|
|
320
320
|
}
|
|
321
321
|
export declare const CopyJobState: {
|
|
322
322
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -327,28 +327,28 @@ export declare const CopyJobState: {
|
|
|
327
327
|
};
|
|
328
328
|
export type CopyJobState = (typeof CopyJobState)[keyof typeof CopyJobState];
|
|
329
329
|
export interface CopyJob {
|
|
330
|
-
AccountId?: string;
|
|
331
|
-
CopyJobId?: string;
|
|
332
|
-
SourceBackupVaultArn?: string;
|
|
333
|
-
SourceRecoveryPointArn?: string;
|
|
334
|
-
DestinationBackupVaultArn?: string;
|
|
335
|
-
DestinationRecoveryPointArn?: string;
|
|
336
|
-
ResourceArn?: string;
|
|
337
|
-
CreationDate?: Date;
|
|
338
|
-
CompletionDate?: Date;
|
|
339
|
-
State?: CopyJobState;
|
|
340
|
-
StatusMessage?: string;
|
|
341
|
-
BackupSizeInBytes?: number;
|
|
342
|
-
IamRoleArn?: string;
|
|
343
|
-
CreatedBy?: RecoveryPointCreator;
|
|
344
|
-
ResourceType?: string;
|
|
345
|
-
ParentJobId?: string;
|
|
346
|
-
IsParent?: boolean;
|
|
347
|
-
CompositeMemberIdentifier?: string;
|
|
348
|
-
NumberOfChildJobs?: number;
|
|
349
|
-
ChildJobsInState?: Partial<Record<CopyJobState, number
|
|
350
|
-
ResourceName?: string;
|
|
351
|
-
MessageCategory?: string;
|
|
330
|
+
AccountId?: string | undefined;
|
|
331
|
+
CopyJobId?: string | undefined;
|
|
332
|
+
SourceBackupVaultArn?: string | undefined;
|
|
333
|
+
SourceRecoveryPointArn?: string | undefined;
|
|
334
|
+
DestinationBackupVaultArn?: string | undefined;
|
|
335
|
+
DestinationRecoveryPointArn?: string | undefined;
|
|
336
|
+
ResourceArn?: string | undefined;
|
|
337
|
+
CreationDate?: Date | undefined;
|
|
338
|
+
CompletionDate?: Date | undefined;
|
|
339
|
+
State?: CopyJobState | undefined;
|
|
340
|
+
StatusMessage?: string | undefined;
|
|
341
|
+
BackupSizeInBytes?: number | undefined;
|
|
342
|
+
IamRoleArn?: string | undefined;
|
|
343
|
+
CreatedBy?: RecoveryPointCreator | undefined;
|
|
344
|
+
ResourceType?: string | undefined;
|
|
345
|
+
ParentJobId?: string | undefined;
|
|
346
|
+
IsParent?: boolean | undefined;
|
|
347
|
+
CompositeMemberIdentifier?: string | undefined;
|
|
348
|
+
NumberOfChildJobs?: number | undefined;
|
|
349
|
+
ChildJobsInState?: Partial<Record<CopyJobState, number>> | undefined;
|
|
350
|
+
ResourceName?: string | undefined;
|
|
351
|
+
MessageCategory?: string | undefined;
|
|
352
352
|
}
|
|
353
353
|
export declare const CopyJobStatus: {
|
|
354
354
|
readonly ABORTED: "ABORTED";
|
|
@@ -365,34 +365,34 @@ export declare const CopyJobStatus: {
|
|
|
365
365
|
};
|
|
366
366
|
export type CopyJobStatus = (typeof CopyJobStatus)[keyof typeof CopyJobStatus];
|
|
367
367
|
export interface CopyJobSummary {
|
|
368
|
-
Region?: string;
|
|
369
|
-
AccountId?: string;
|
|
370
|
-
State?: CopyJobStatus;
|
|
371
|
-
ResourceType?: string;
|
|
372
|
-
MessageCategory?: string;
|
|
373
|
-
Count?: number;
|
|
374
|
-
StartTime?: Date;
|
|
375
|
-
EndTime?: Date;
|
|
368
|
+
Region?: string | undefined;
|
|
369
|
+
AccountId?: string | undefined;
|
|
370
|
+
State?: CopyJobStatus | undefined;
|
|
371
|
+
ResourceType?: string | undefined;
|
|
372
|
+
MessageCategory?: string | undefined;
|
|
373
|
+
Count?: number | undefined;
|
|
374
|
+
StartTime?: Date | undefined;
|
|
375
|
+
EndTime?: Date | undefined;
|
|
376
376
|
}
|
|
377
377
|
export interface CreateBackupPlanInput {
|
|
378
378
|
BackupPlan: BackupPlanInput | undefined;
|
|
379
|
-
BackupPlanTags?: Record<string, string
|
|
380
|
-
CreatorRequestId?: string;
|
|
379
|
+
BackupPlanTags?: Record<string, string> | undefined;
|
|
380
|
+
CreatorRequestId?: string | undefined;
|
|
381
381
|
}
|
|
382
382
|
export interface CreateBackupPlanOutput {
|
|
383
|
-
BackupPlanId?: string;
|
|
384
|
-
BackupPlanArn?: string;
|
|
385
|
-
CreationDate?: Date;
|
|
386
|
-
VersionId?: string;
|
|
387
|
-
AdvancedBackupSettings?: AdvancedBackupSetting[];
|
|
383
|
+
BackupPlanId?: string | undefined;
|
|
384
|
+
BackupPlanArn?: string | undefined;
|
|
385
|
+
CreationDate?: Date | undefined;
|
|
386
|
+
VersionId?: string | undefined;
|
|
387
|
+
AdvancedBackupSettings?: AdvancedBackupSetting[] | undefined;
|
|
388
388
|
}
|
|
389
389
|
export declare class LimitExceededException extends __BaseException {
|
|
390
390
|
readonly name: "LimitExceededException";
|
|
391
391
|
readonly $fault: "client";
|
|
392
|
-
Code?: string;
|
|
393
|
-
Message?: string;
|
|
394
|
-
Type?: string;
|
|
395
|
-
Context?: string;
|
|
392
|
+
Code?: string | undefined;
|
|
393
|
+
Message?: string | undefined;
|
|
394
|
+
Type?: string | undefined;
|
|
395
|
+
Context?: string | undefined;
|
|
396
396
|
constructor(
|
|
397
397
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
398
398
|
);
|
|
@@ -400,55 +400,55 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
400
400
|
export interface CreateBackupSelectionInput {
|
|
401
401
|
BackupPlanId: string | undefined;
|
|
402
402
|
BackupSelection: BackupSelection | undefined;
|
|
403
|
-
CreatorRequestId?: string;
|
|
403
|
+
CreatorRequestId?: string | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface CreateBackupSelectionOutput {
|
|
406
|
-
SelectionId?: string;
|
|
407
|
-
BackupPlanId?: string;
|
|
408
|
-
CreationDate?: Date;
|
|
406
|
+
SelectionId?: string | undefined;
|
|
407
|
+
BackupPlanId?: string | undefined;
|
|
408
|
+
CreationDate?: Date | undefined;
|
|
409
409
|
}
|
|
410
410
|
export interface CreateBackupVaultInput {
|
|
411
411
|
BackupVaultName: string | undefined;
|
|
412
|
-
BackupVaultTags?: Record<string, string
|
|
413
|
-
EncryptionKeyArn?: string;
|
|
414
|
-
CreatorRequestId?: string;
|
|
412
|
+
BackupVaultTags?: Record<string, string> | undefined;
|
|
413
|
+
EncryptionKeyArn?: string | undefined;
|
|
414
|
+
CreatorRequestId?: string | undefined;
|
|
415
415
|
}
|
|
416
416
|
export interface CreateBackupVaultOutput {
|
|
417
|
-
BackupVaultName?: string;
|
|
418
|
-
BackupVaultArn?: string;
|
|
419
|
-
CreationDate?: Date;
|
|
417
|
+
BackupVaultName?: string | undefined;
|
|
418
|
+
BackupVaultArn?: string | undefined;
|
|
419
|
+
CreationDate?: Date | undefined;
|
|
420
420
|
}
|
|
421
421
|
export interface FrameworkControl {
|
|
422
422
|
ControlName: string | undefined;
|
|
423
|
-
ControlInputParameters?: ControlInputParameter[];
|
|
424
|
-
ControlScope?: ControlScope;
|
|
423
|
+
ControlInputParameters?: ControlInputParameter[] | undefined;
|
|
424
|
+
ControlScope?: ControlScope | undefined;
|
|
425
425
|
}
|
|
426
426
|
export interface CreateFrameworkInput {
|
|
427
427
|
FrameworkName: string | undefined;
|
|
428
|
-
FrameworkDescription?: string;
|
|
428
|
+
FrameworkDescription?: string | undefined;
|
|
429
429
|
FrameworkControls: FrameworkControl[] | undefined;
|
|
430
|
-
IdempotencyToken?: string;
|
|
431
|
-
FrameworkTags?: Record<string, string
|
|
430
|
+
IdempotencyToken?: string | undefined;
|
|
431
|
+
FrameworkTags?: Record<string, string> | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface CreateFrameworkOutput {
|
|
434
|
-
FrameworkName?: string;
|
|
435
|
-
FrameworkArn?: string;
|
|
434
|
+
FrameworkName?: string | undefined;
|
|
435
|
+
FrameworkArn?: string | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface DateRange {
|
|
438
438
|
FromDate: Date | undefined;
|
|
439
439
|
ToDate: Date | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface RecoveryPointSelection {
|
|
442
|
-
VaultNames?: string[];
|
|
443
|
-
ResourceIdentifiers?: string[];
|
|
444
|
-
DateRange?: DateRange;
|
|
442
|
+
VaultNames?: string[] | undefined;
|
|
443
|
+
ResourceIdentifiers?: string[] | undefined;
|
|
444
|
+
DateRange?: DateRange | undefined;
|
|
445
445
|
}
|
|
446
446
|
export interface CreateLegalHoldInput {
|
|
447
447
|
Title: string | undefined;
|
|
448
448
|
Description: string | undefined;
|
|
449
|
-
IdempotencyToken?: string;
|
|
450
|
-
RecoveryPointSelection?: RecoveryPointSelection;
|
|
451
|
-
Tags?: Record<string, string
|
|
449
|
+
IdempotencyToken?: string | undefined;
|
|
450
|
+
RecoveryPointSelection?: RecoveryPointSelection | undefined;
|
|
451
|
+
Tags?: Record<string, string> | undefined;
|
|
452
452
|
}
|
|
453
453
|
export declare const LegalHoldStatus: {
|
|
454
454
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -459,63 +459,63 @@ export declare const LegalHoldStatus: {
|
|
|
459
459
|
export type LegalHoldStatus =
|
|
460
460
|
(typeof LegalHoldStatus)[keyof typeof LegalHoldStatus];
|
|
461
461
|
export interface CreateLegalHoldOutput {
|
|
462
|
-
Title?: string;
|
|
463
|
-
Status?: LegalHoldStatus;
|
|
464
|
-
Description?: string;
|
|
465
|
-
LegalHoldId?: string;
|
|
466
|
-
LegalHoldArn?: string;
|
|
467
|
-
CreationDate?: Date;
|
|
468
|
-
RecoveryPointSelection?: RecoveryPointSelection;
|
|
462
|
+
Title?: string | undefined;
|
|
463
|
+
Status?: LegalHoldStatus | undefined;
|
|
464
|
+
Description?: string | undefined;
|
|
465
|
+
LegalHoldId?: string | undefined;
|
|
466
|
+
LegalHoldArn?: string | undefined;
|
|
467
|
+
CreationDate?: Date | undefined;
|
|
468
|
+
RecoveryPointSelection?: RecoveryPointSelection | undefined;
|
|
469
469
|
}
|
|
470
470
|
export interface CreateLogicallyAirGappedBackupVaultInput {
|
|
471
471
|
BackupVaultName: string | undefined;
|
|
472
|
-
BackupVaultTags?: Record<string, string
|
|
473
|
-
CreatorRequestId?: string;
|
|
472
|
+
BackupVaultTags?: Record<string, string> | undefined;
|
|
473
|
+
CreatorRequestId?: string | undefined;
|
|
474
474
|
MinRetentionDays: number | undefined;
|
|
475
475
|
MaxRetentionDays: number | undefined;
|
|
476
476
|
}
|
|
477
477
|
export interface CreateLogicallyAirGappedBackupVaultOutput {
|
|
478
|
-
BackupVaultName?: string;
|
|
479
|
-
BackupVaultArn?: string;
|
|
480
|
-
CreationDate?: Date;
|
|
481
|
-
VaultState?: VaultState;
|
|
478
|
+
BackupVaultName?: string | undefined;
|
|
479
|
+
BackupVaultArn?: string | undefined;
|
|
480
|
+
CreationDate?: Date | undefined;
|
|
481
|
+
VaultState?: VaultState | undefined;
|
|
482
482
|
}
|
|
483
483
|
export declare class InvalidRequestException extends __BaseException {
|
|
484
484
|
readonly name: "InvalidRequestException";
|
|
485
485
|
readonly $fault: "client";
|
|
486
|
-
Code?: string;
|
|
487
|
-
Message?: string;
|
|
488
|
-
Type?: string;
|
|
489
|
-
Context?: string;
|
|
486
|
+
Code?: string | undefined;
|
|
487
|
+
Message?: string | undefined;
|
|
488
|
+
Type?: string | undefined;
|
|
489
|
+
Context?: string | undefined;
|
|
490
490
|
constructor(
|
|
491
491
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
492
492
|
);
|
|
493
493
|
}
|
|
494
494
|
export interface ReportDeliveryChannel {
|
|
495
495
|
S3BucketName: string | undefined;
|
|
496
|
-
S3KeyPrefix?: string;
|
|
497
|
-
Formats?: string[];
|
|
496
|
+
S3KeyPrefix?: string | undefined;
|
|
497
|
+
Formats?: string[] | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface ReportSetting {
|
|
500
500
|
ReportTemplate: string | undefined;
|
|
501
|
-
FrameworkArns?: string[];
|
|
502
|
-
NumberOfFrameworks?: number;
|
|
503
|
-
Accounts?: string[];
|
|
504
|
-
OrganizationUnits?: string[];
|
|
505
|
-
Regions?: string[];
|
|
501
|
+
FrameworkArns?: string[] | undefined;
|
|
502
|
+
NumberOfFrameworks?: number | undefined;
|
|
503
|
+
Accounts?: string[] | undefined;
|
|
504
|
+
OrganizationUnits?: string[] | undefined;
|
|
505
|
+
Regions?: string[] | undefined;
|
|
506
506
|
}
|
|
507
507
|
export interface CreateReportPlanInput {
|
|
508
508
|
ReportPlanName: string | undefined;
|
|
509
|
-
ReportPlanDescription?: string;
|
|
509
|
+
ReportPlanDescription?: string | undefined;
|
|
510
510
|
ReportDeliveryChannel: ReportDeliveryChannel | undefined;
|
|
511
511
|
ReportSetting: ReportSetting | undefined;
|
|
512
|
-
ReportPlanTags?: Record<string, string
|
|
513
|
-
IdempotencyToken?: string;
|
|
512
|
+
ReportPlanTags?: Record<string, string> | undefined;
|
|
513
|
+
IdempotencyToken?: string | undefined;
|
|
514
514
|
}
|
|
515
515
|
export interface CreateReportPlanOutput {
|
|
516
|
-
ReportPlanName?: string;
|
|
517
|
-
ReportPlanArn?: string;
|
|
518
|
-
CreationTime?: Date;
|
|
516
|
+
ReportPlanName?: string | undefined;
|
|
517
|
+
ReportPlanArn?: string | undefined;
|
|
518
|
+
CreationTime?: Date | undefined;
|
|
519
519
|
}
|
|
520
520
|
export declare const RestoreTestingRecoveryPointSelectionAlgorithm: {
|
|
521
521
|
readonly LATEST_WITHIN_WINDOW: "LATEST_WITHIN_WINDOW";
|
|
@@ -530,23 +530,23 @@ export declare const RestoreTestingRecoveryPointType: {
|
|
|
530
530
|
export type RestoreTestingRecoveryPointType =
|
|
531
531
|
(typeof RestoreTestingRecoveryPointType)[keyof typeof RestoreTestingRecoveryPointType];
|
|
532
532
|
export interface RestoreTestingRecoveryPointSelection {
|
|
533
|
-
Algorithm?: RestoreTestingRecoveryPointSelectionAlgorithm;
|
|
534
|
-
ExcludeVaults?: string[];
|
|
535
|
-
IncludeVaults?: string[];
|
|
536
|
-
RecoveryPointTypes?: RestoreTestingRecoveryPointType[];
|
|
537
|
-
SelectionWindowDays?: number;
|
|
533
|
+
Algorithm?: RestoreTestingRecoveryPointSelectionAlgorithm | undefined;
|
|
534
|
+
ExcludeVaults?: string[] | undefined;
|
|
535
|
+
IncludeVaults?: string[] | undefined;
|
|
536
|
+
RecoveryPointTypes?: RestoreTestingRecoveryPointType[] | undefined;
|
|
537
|
+
SelectionWindowDays?: number | undefined;
|
|
538
538
|
}
|
|
539
539
|
export interface RestoreTestingPlanForCreate {
|
|
540
540
|
RecoveryPointSelection: RestoreTestingRecoveryPointSelection | undefined;
|
|
541
541
|
RestoreTestingPlanName: string | undefined;
|
|
542
542
|
ScheduleExpression: string | undefined;
|
|
543
|
-
ScheduleExpressionTimezone?: string;
|
|
544
|
-
StartWindowHours?: number;
|
|
543
|
+
ScheduleExpressionTimezone?: string | undefined;
|
|
544
|
+
StartWindowHours?: number | undefined;
|
|
545
545
|
}
|
|
546
546
|
export interface CreateRestoreTestingPlanInput {
|
|
547
|
-
CreatorRequestId?: string;
|
|
547
|
+
CreatorRequestId?: string | undefined;
|
|
548
548
|
RestoreTestingPlan: RestoreTestingPlanForCreate | undefined;
|
|
549
|
-
Tags?: Record<string, string
|
|
549
|
+
Tags?: Record<string, string> | undefined;
|
|
550
550
|
}
|
|
551
551
|
export interface CreateRestoreTestingPlanOutput {
|
|
552
552
|
CreationTime: Date | undefined;
|
|
@@ -558,20 +558,20 @@ export interface KeyValue {
|
|
|
558
558
|
Value: string | undefined;
|
|
559
559
|
}
|
|
560
560
|
export interface ProtectedResourceConditions {
|
|
561
|
-
StringEquals?: KeyValue[];
|
|
562
|
-
StringNotEquals?: KeyValue[];
|
|
561
|
+
StringEquals?: KeyValue[] | undefined;
|
|
562
|
+
StringNotEquals?: KeyValue[] | undefined;
|
|
563
563
|
}
|
|
564
564
|
export interface RestoreTestingSelectionForCreate {
|
|
565
565
|
IamRoleArn: string | undefined;
|
|
566
|
-
ProtectedResourceArns?: string[];
|
|
567
|
-
ProtectedResourceConditions?: ProtectedResourceConditions;
|
|
566
|
+
ProtectedResourceArns?: string[] | undefined;
|
|
567
|
+
ProtectedResourceConditions?: ProtectedResourceConditions | undefined;
|
|
568
568
|
ProtectedResourceType: string | undefined;
|
|
569
|
-
RestoreMetadataOverrides?: Record<string, string
|
|
569
|
+
RestoreMetadataOverrides?: Record<string, string> | undefined;
|
|
570
570
|
RestoreTestingSelectionName: string | undefined;
|
|
571
|
-
ValidationWindowHours?: number;
|
|
571
|
+
ValidationWindowHours?: number | undefined;
|
|
572
572
|
}
|
|
573
573
|
export interface CreateRestoreTestingSelectionInput {
|
|
574
|
-
CreatorRequestId?: string;
|
|
574
|
+
CreatorRequestId?: string | undefined;
|
|
575
575
|
RestoreTestingPlanName: string | undefined;
|
|
576
576
|
RestoreTestingSelection: RestoreTestingSelectionForCreate | undefined;
|
|
577
577
|
}
|
|
@@ -585,10 +585,10 @@ export interface DeleteBackupPlanInput {
|
|
|
585
585
|
BackupPlanId: string | undefined;
|
|
586
586
|
}
|
|
587
587
|
export interface DeleteBackupPlanOutput {
|
|
588
|
-
BackupPlanId?: string;
|
|
589
|
-
BackupPlanArn?: string;
|
|
590
|
-
DeletionDate?: Date;
|
|
591
|
-
VersionId?: string;
|
|
588
|
+
BackupPlanId?: string | undefined;
|
|
589
|
+
BackupPlanArn?: string | undefined;
|
|
590
|
+
DeletionDate?: Date | undefined;
|
|
591
|
+
VersionId?: string | undefined;
|
|
592
592
|
}
|
|
593
593
|
export interface DeleteBackupSelectionInput {
|
|
594
594
|
BackupPlanId: string | undefined;
|
|
@@ -626,10 +626,10 @@ export interface DeleteRestoreTestingSelectionInput {
|
|
|
626
626
|
export declare class DependencyFailureException extends __BaseException {
|
|
627
627
|
readonly name: "DependencyFailureException";
|
|
628
628
|
readonly $fault: "server";
|
|
629
|
-
Code?: string;
|
|
630
|
-
Message?: string;
|
|
631
|
-
Type?: string;
|
|
632
|
-
Context?: string;
|
|
629
|
+
Code?: string | undefined;
|
|
630
|
+
Message?: string | undefined;
|
|
631
|
+
Type?: string | undefined;
|
|
632
|
+
Context?: string | undefined;
|
|
633
633
|
constructor(
|
|
634
634
|
opts: __ExceptionOptionType<DependencyFailureException, __BaseException>
|
|
635
635
|
);
|
|
@@ -638,94 +638,94 @@ export interface DescribeBackupJobInput {
|
|
|
638
638
|
BackupJobId: string | undefined;
|
|
639
639
|
}
|
|
640
640
|
export interface DescribeBackupJobOutput {
|
|
641
|
-
AccountId?: string;
|
|
642
|
-
BackupJobId?: string;
|
|
643
|
-
BackupVaultName?: string;
|
|
644
|
-
BackupVaultArn?: string;
|
|
645
|
-
RecoveryPointArn?: string;
|
|
646
|
-
ResourceArn?: string;
|
|
647
|
-
CreationDate?: Date;
|
|
648
|
-
CompletionDate?: Date;
|
|
649
|
-
State?: BackupJobState;
|
|
650
|
-
StatusMessage?: string;
|
|
651
|
-
PercentDone?: string;
|
|
652
|
-
BackupSizeInBytes?: number;
|
|
653
|
-
IamRoleArn?: string;
|
|
654
|
-
CreatedBy?: RecoveryPointCreator;
|
|
655
|
-
ResourceType?: string;
|
|
656
|
-
BytesTransferred?: number;
|
|
657
|
-
ExpectedCompletionDate?: Date;
|
|
658
|
-
StartBy?: Date;
|
|
659
|
-
BackupOptions?: Record<string, string
|
|
660
|
-
BackupType?: string;
|
|
661
|
-
ParentJobId?: string;
|
|
662
|
-
IsParent?: boolean;
|
|
663
|
-
NumberOfChildJobs?: number;
|
|
664
|
-
ChildJobsInState?: Partial<Record<BackupJobState, number
|
|
665
|
-
ResourceName?: string;
|
|
666
|
-
InitiationDate?: Date;
|
|
667
|
-
MessageCategory?: string;
|
|
641
|
+
AccountId?: string | undefined;
|
|
642
|
+
BackupJobId?: string | undefined;
|
|
643
|
+
BackupVaultName?: string | undefined;
|
|
644
|
+
BackupVaultArn?: string | undefined;
|
|
645
|
+
RecoveryPointArn?: string | undefined;
|
|
646
|
+
ResourceArn?: string | undefined;
|
|
647
|
+
CreationDate?: Date | undefined;
|
|
648
|
+
CompletionDate?: Date | undefined;
|
|
649
|
+
State?: BackupJobState | undefined;
|
|
650
|
+
StatusMessage?: string | undefined;
|
|
651
|
+
PercentDone?: string | undefined;
|
|
652
|
+
BackupSizeInBytes?: number | undefined;
|
|
653
|
+
IamRoleArn?: string | undefined;
|
|
654
|
+
CreatedBy?: RecoveryPointCreator | undefined;
|
|
655
|
+
ResourceType?: string | undefined;
|
|
656
|
+
BytesTransferred?: number | undefined;
|
|
657
|
+
ExpectedCompletionDate?: Date | undefined;
|
|
658
|
+
StartBy?: Date | undefined;
|
|
659
|
+
BackupOptions?: Record<string, string> | undefined;
|
|
660
|
+
BackupType?: string | undefined;
|
|
661
|
+
ParentJobId?: string | undefined;
|
|
662
|
+
IsParent?: boolean | undefined;
|
|
663
|
+
NumberOfChildJobs?: number | undefined;
|
|
664
|
+
ChildJobsInState?: Partial<Record<BackupJobState, number>> | undefined;
|
|
665
|
+
ResourceName?: string | undefined;
|
|
666
|
+
InitiationDate?: Date | undefined;
|
|
667
|
+
MessageCategory?: string | undefined;
|
|
668
668
|
}
|
|
669
669
|
export interface DescribeBackupVaultInput {
|
|
670
670
|
BackupVaultName: string | undefined;
|
|
671
|
-
BackupVaultAccountId?: string;
|
|
671
|
+
BackupVaultAccountId?: string | undefined;
|
|
672
672
|
}
|
|
673
673
|
export interface DescribeBackupVaultOutput {
|
|
674
|
-
BackupVaultName?: string;
|
|
675
|
-
BackupVaultArn?: string;
|
|
676
|
-
VaultType?: VaultType;
|
|
677
|
-
VaultState?: VaultState;
|
|
678
|
-
EncryptionKeyArn?: string;
|
|
679
|
-
CreationDate?: Date;
|
|
680
|
-
CreatorRequestId?: string;
|
|
681
|
-
NumberOfRecoveryPoints?: number;
|
|
682
|
-
Locked?: boolean;
|
|
683
|
-
MinRetentionDays?: number;
|
|
684
|
-
MaxRetentionDays?: number;
|
|
685
|
-
LockDate?: Date;
|
|
674
|
+
BackupVaultName?: string | undefined;
|
|
675
|
+
BackupVaultArn?: string | undefined;
|
|
676
|
+
VaultType?: VaultType | undefined;
|
|
677
|
+
VaultState?: VaultState | undefined;
|
|
678
|
+
EncryptionKeyArn?: string | undefined;
|
|
679
|
+
CreationDate?: Date | undefined;
|
|
680
|
+
CreatorRequestId?: string | undefined;
|
|
681
|
+
NumberOfRecoveryPoints?: number | undefined;
|
|
682
|
+
Locked?: boolean | undefined;
|
|
683
|
+
MinRetentionDays?: number | undefined;
|
|
684
|
+
MaxRetentionDays?: number | undefined;
|
|
685
|
+
LockDate?: Date | undefined;
|
|
686
686
|
}
|
|
687
687
|
export interface DescribeCopyJobInput {
|
|
688
688
|
CopyJobId: string | undefined;
|
|
689
689
|
}
|
|
690
690
|
export interface DescribeCopyJobOutput {
|
|
691
|
-
CopyJob?: CopyJob;
|
|
691
|
+
CopyJob?: CopyJob | undefined;
|
|
692
692
|
}
|
|
693
693
|
export interface DescribeFrameworkInput {
|
|
694
694
|
FrameworkName: string | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface DescribeFrameworkOutput {
|
|
697
|
-
FrameworkName?: string;
|
|
698
|
-
FrameworkArn?: string;
|
|
699
|
-
FrameworkDescription?: string;
|
|
700
|
-
FrameworkControls?: FrameworkControl[];
|
|
701
|
-
CreationTime?: Date;
|
|
702
|
-
DeploymentStatus?: string;
|
|
703
|
-
FrameworkStatus?: string;
|
|
704
|
-
IdempotencyToken?: string;
|
|
697
|
+
FrameworkName?: string | undefined;
|
|
698
|
+
FrameworkArn?: string | undefined;
|
|
699
|
+
FrameworkDescription?: string | undefined;
|
|
700
|
+
FrameworkControls?: FrameworkControl[] | undefined;
|
|
701
|
+
CreationTime?: Date | undefined;
|
|
702
|
+
DeploymentStatus?: string | undefined;
|
|
703
|
+
FrameworkStatus?: string | undefined;
|
|
704
|
+
IdempotencyToken?: string | undefined;
|
|
705
705
|
}
|
|
706
706
|
export interface DescribeGlobalSettingsInput {}
|
|
707
707
|
export interface DescribeGlobalSettingsOutput {
|
|
708
|
-
GlobalSettings?: Record<string, string
|
|
709
|
-
LastUpdateTime?: Date;
|
|
708
|
+
GlobalSettings?: Record<string, string> | undefined;
|
|
709
|
+
LastUpdateTime?: Date | undefined;
|
|
710
710
|
}
|
|
711
711
|
export interface DescribeProtectedResourceInput {
|
|
712
712
|
ResourceArn: string | undefined;
|
|
713
713
|
}
|
|
714
714
|
export interface DescribeProtectedResourceOutput {
|
|
715
|
-
ResourceArn?: string;
|
|
716
|
-
ResourceType?: string;
|
|
717
|
-
LastBackupTime?: Date;
|
|
718
|
-
ResourceName?: string;
|
|
719
|
-
LastBackupVaultArn?: string;
|
|
720
|
-
LastRecoveryPointArn?: string;
|
|
721
|
-
LatestRestoreExecutionTimeMinutes?: number;
|
|
722
|
-
LatestRestoreJobCreationDate?: Date;
|
|
723
|
-
LatestRestoreRecoveryPointCreationDate?: Date;
|
|
715
|
+
ResourceArn?: string | undefined;
|
|
716
|
+
ResourceType?: string | undefined;
|
|
717
|
+
LastBackupTime?: Date | undefined;
|
|
718
|
+
ResourceName?: string | undefined;
|
|
719
|
+
LastBackupVaultArn?: string | undefined;
|
|
720
|
+
LastRecoveryPointArn?: string | undefined;
|
|
721
|
+
LatestRestoreExecutionTimeMinutes?: number | undefined;
|
|
722
|
+
LatestRestoreJobCreationDate?: Date | undefined;
|
|
723
|
+
LatestRestoreRecoveryPointCreationDate?: Date | undefined;
|
|
724
724
|
}
|
|
725
725
|
export interface DescribeRecoveryPointInput {
|
|
726
726
|
BackupVaultName: string | undefined;
|
|
727
727
|
RecoveryPointArn: string | undefined;
|
|
728
|
-
BackupVaultAccountId?: string;
|
|
728
|
+
BackupVaultAccountId?: string | undefined;
|
|
729
729
|
}
|
|
730
730
|
export declare const RecoveryPointStatus: {
|
|
731
731
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -742,78 +742,78 @@ export declare const StorageClass: {
|
|
|
742
742
|
};
|
|
743
743
|
export type StorageClass = (typeof StorageClass)[keyof typeof StorageClass];
|
|
744
744
|
export interface DescribeRecoveryPointOutput {
|
|
745
|
-
RecoveryPointArn?: string;
|
|
746
|
-
BackupVaultName?: string;
|
|
747
|
-
BackupVaultArn?: string;
|
|
748
|
-
SourceBackupVaultArn?: string;
|
|
749
|
-
ResourceArn?: string;
|
|
750
|
-
ResourceType?: string;
|
|
751
|
-
CreatedBy?: RecoveryPointCreator;
|
|
752
|
-
IamRoleArn?: string;
|
|
753
|
-
Status?: RecoveryPointStatus;
|
|
754
|
-
StatusMessage?: string;
|
|
755
|
-
CreationDate?: Date;
|
|
756
|
-
CompletionDate?: Date;
|
|
757
|
-
BackupSizeInBytes?: number;
|
|
758
|
-
CalculatedLifecycle?: CalculatedLifecycle;
|
|
759
|
-
Lifecycle?: Lifecycle;
|
|
760
|
-
EncryptionKeyArn?: string;
|
|
761
|
-
IsEncrypted?: boolean;
|
|
762
|
-
StorageClass?: StorageClass;
|
|
763
|
-
LastRestoreTime?: Date;
|
|
764
|
-
ParentRecoveryPointArn?: string;
|
|
765
|
-
CompositeMemberIdentifier?: string;
|
|
766
|
-
IsParent?: boolean;
|
|
767
|
-
ResourceName?: string;
|
|
768
|
-
VaultType?: VaultType;
|
|
745
|
+
RecoveryPointArn?: string | undefined;
|
|
746
|
+
BackupVaultName?: string | undefined;
|
|
747
|
+
BackupVaultArn?: string | undefined;
|
|
748
|
+
SourceBackupVaultArn?: string | undefined;
|
|
749
|
+
ResourceArn?: string | undefined;
|
|
750
|
+
ResourceType?: string | undefined;
|
|
751
|
+
CreatedBy?: RecoveryPointCreator | undefined;
|
|
752
|
+
IamRoleArn?: string | undefined;
|
|
753
|
+
Status?: RecoveryPointStatus | undefined;
|
|
754
|
+
StatusMessage?: string | undefined;
|
|
755
|
+
CreationDate?: Date | undefined;
|
|
756
|
+
CompletionDate?: Date | undefined;
|
|
757
|
+
BackupSizeInBytes?: number | undefined;
|
|
758
|
+
CalculatedLifecycle?: CalculatedLifecycle | undefined;
|
|
759
|
+
Lifecycle?: Lifecycle | undefined;
|
|
760
|
+
EncryptionKeyArn?: string | undefined;
|
|
761
|
+
IsEncrypted?: boolean | undefined;
|
|
762
|
+
StorageClass?: StorageClass | undefined;
|
|
763
|
+
LastRestoreTime?: Date | undefined;
|
|
764
|
+
ParentRecoveryPointArn?: string | undefined;
|
|
765
|
+
CompositeMemberIdentifier?: string | undefined;
|
|
766
|
+
IsParent?: boolean | undefined;
|
|
767
|
+
ResourceName?: string | undefined;
|
|
768
|
+
VaultType?: VaultType | undefined;
|
|
769
769
|
}
|
|
770
770
|
export interface DescribeRegionSettingsInput {}
|
|
771
771
|
export interface DescribeRegionSettingsOutput {
|
|
772
|
-
ResourceTypeOptInPreference?: Record<string, boolean
|
|
773
|
-
ResourceTypeManagementPreference?: Record<string, boolean
|
|
772
|
+
ResourceTypeOptInPreference?: Record<string, boolean> | undefined;
|
|
773
|
+
ResourceTypeManagementPreference?: Record<string, boolean> | undefined;
|
|
774
774
|
}
|
|
775
775
|
export interface DescribeReportJobInput {
|
|
776
776
|
ReportJobId: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface ReportDestination {
|
|
779
|
-
S3BucketName?: string;
|
|
780
|
-
S3Keys?: string[];
|
|
779
|
+
S3BucketName?: string | undefined;
|
|
780
|
+
S3Keys?: string[] | undefined;
|
|
781
781
|
}
|
|
782
782
|
export interface ReportJob {
|
|
783
|
-
ReportJobId?: string;
|
|
784
|
-
ReportPlanArn?: string;
|
|
785
|
-
ReportTemplate?: string;
|
|
786
|
-
CreationTime?: Date;
|
|
787
|
-
CompletionTime?: Date;
|
|
788
|
-
Status?: string;
|
|
789
|
-
StatusMessage?: string;
|
|
790
|
-
ReportDestination?: ReportDestination;
|
|
783
|
+
ReportJobId?: string | undefined;
|
|
784
|
+
ReportPlanArn?: string | undefined;
|
|
785
|
+
ReportTemplate?: string | undefined;
|
|
786
|
+
CreationTime?: Date | undefined;
|
|
787
|
+
CompletionTime?: Date | undefined;
|
|
788
|
+
Status?: string | undefined;
|
|
789
|
+
StatusMessage?: string | undefined;
|
|
790
|
+
ReportDestination?: ReportDestination | undefined;
|
|
791
791
|
}
|
|
792
792
|
export interface DescribeReportJobOutput {
|
|
793
|
-
ReportJob?: ReportJob;
|
|
793
|
+
ReportJob?: ReportJob | undefined;
|
|
794
794
|
}
|
|
795
795
|
export interface DescribeReportPlanInput {
|
|
796
796
|
ReportPlanName: string | undefined;
|
|
797
797
|
}
|
|
798
798
|
export interface ReportPlan {
|
|
799
|
-
ReportPlanArn?: string;
|
|
800
|
-
ReportPlanName?: string;
|
|
801
|
-
ReportPlanDescription?: string;
|
|
802
|
-
ReportSetting?: ReportSetting;
|
|
803
|
-
ReportDeliveryChannel?: ReportDeliveryChannel;
|
|
804
|
-
DeploymentStatus?: string;
|
|
805
|
-
CreationTime?: Date;
|
|
806
|
-
LastAttemptedExecutionTime?: Date;
|
|
807
|
-
LastSuccessfulExecutionTime?: Date;
|
|
799
|
+
ReportPlanArn?: string | undefined;
|
|
800
|
+
ReportPlanName?: string | undefined;
|
|
801
|
+
ReportPlanDescription?: string | undefined;
|
|
802
|
+
ReportSetting?: ReportSetting | undefined;
|
|
803
|
+
ReportDeliveryChannel?: ReportDeliveryChannel | undefined;
|
|
804
|
+
DeploymentStatus?: string | undefined;
|
|
805
|
+
CreationTime?: Date | undefined;
|
|
806
|
+
LastAttemptedExecutionTime?: Date | undefined;
|
|
807
|
+
LastSuccessfulExecutionTime?: Date | undefined;
|
|
808
808
|
}
|
|
809
809
|
export interface DescribeReportPlanOutput {
|
|
810
|
-
ReportPlan?: ReportPlan;
|
|
810
|
+
ReportPlan?: ReportPlan | undefined;
|
|
811
811
|
}
|
|
812
812
|
export interface DescribeRestoreJobInput {
|
|
813
813
|
RestoreJobId: string | undefined;
|
|
814
814
|
}
|
|
815
815
|
export interface RestoreJobCreator {
|
|
816
|
-
RestoreTestingPlanArn?: string;
|
|
816
|
+
RestoreTestingPlanArn?: string | undefined;
|
|
817
817
|
}
|
|
818
818
|
export declare const RestoreDeletionStatus: {
|
|
819
819
|
readonly DELETING: "DELETING";
|
|
@@ -840,25 +840,25 @@ export declare const RestoreValidationStatus: {
|
|
|
840
840
|
export type RestoreValidationStatus =
|
|
841
841
|
(typeof RestoreValidationStatus)[keyof typeof RestoreValidationStatus];
|
|
842
842
|
export interface DescribeRestoreJobOutput {
|
|
843
|
-
AccountId?: string;
|
|
844
|
-
RestoreJobId?: string;
|
|
845
|
-
RecoveryPointArn?: string;
|
|
846
|
-
CreationDate?: Date;
|
|
847
|
-
CompletionDate?: Date;
|
|
848
|
-
Status?: RestoreJobStatus;
|
|
849
|
-
StatusMessage?: string;
|
|
850
|
-
PercentDone?: string;
|
|
851
|
-
BackupSizeInBytes?: number;
|
|
852
|
-
IamRoleArn?: string;
|
|
853
|
-
ExpectedCompletionTimeMinutes?: number;
|
|
854
|
-
CreatedResourceArn?: string;
|
|
855
|
-
ResourceType?: string;
|
|
856
|
-
RecoveryPointCreationDate?: Date;
|
|
857
|
-
CreatedBy?: RestoreJobCreator;
|
|
858
|
-
ValidationStatus?: RestoreValidationStatus;
|
|
859
|
-
ValidationStatusMessage?: string;
|
|
860
|
-
DeletionStatus?: RestoreDeletionStatus;
|
|
861
|
-
DeletionStatusMessage?: string;
|
|
843
|
+
AccountId?: string | undefined;
|
|
844
|
+
RestoreJobId?: string | undefined;
|
|
845
|
+
RecoveryPointArn?: string | undefined;
|
|
846
|
+
CreationDate?: Date | undefined;
|
|
847
|
+
CompletionDate?: Date | undefined;
|
|
848
|
+
Status?: RestoreJobStatus | undefined;
|
|
849
|
+
StatusMessage?: string | undefined;
|
|
850
|
+
PercentDone?: string | undefined;
|
|
851
|
+
BackupSizeInBytes?: number | undefined;
|
|
852
|
+
IamRoleArn?: string | undefined;
|
|
853
|
+
ExpectedCompletionTimeMinutes?: number | undefined;
|
|
854
|
+
CreatedResourceArn?: string | undefined;
|
|
855
|
+
ResourceType?: string | undefined;
|
|
856
|
+
RecoveryPointCreationDate?: Date | undefined;
|
|
857
|
+
CreatedBy?: RestoreJobCreator | undefined;
|
|
858
|
+
ValidationStatus?: RestoreValidationStatus | undefined;
|
|
859
|
+
ValidationStatusMessage?: string | undefined;
|
|
860
|
+
DeletionStatus?: RestoreDeletionStatus | undefined;
|
|
861
|
+
DeletionStatusMessage?: string | undefined;
|
|
862
862
|
}
|
|
863
863
|
export interface DisassociateRecoveryPointInput {
|
|
864
864
|
BackupVaultName: string | undefined;
|
|
@@ -872,98 +872,98 @@ export interface ExportBackupPlanTemplateInput {
|
|
|
872
872
|
BackupPlanId: string | undefined;
|
|
873
873
|
}
|
|
874
874
|
export interface ExportBackupPlanTemplateOutput {
|
|
875
|
-
BackupPlanTemplateJson?: string;
|
|
875
|
+
BackupPlanTemplateJson?: string | undefined;
|
|
876
876
|
}
|
|
877
877
|
export interface GetBackupPlanInput {
|
|
878
878
|
BackupPlanId: string | undefined;
|
|
879
|
-
VersionId?: string;
|
|
879
|
+
VersionId?: string | undefined;
|
|
880
880
|
}
|
|
881
881
|
export interface GetBackupPlanOutput {
|
|
882
|
-
BackupPlan?: BackupPlan;
|
|
883
|
-
BackupPlanId?: string;
|
|
884
|
-
BackupPlanArn?: string;
|
|
885
|
-
VersionId?: string;
|
|
886
|
-
CreatorRequestId?: string;
|
|
887
|
-
CreationDate?: Date;
|
|
888
|
-
DeletionDate?: Date;
|
|
889
|
-
LastExecutionDate?: Date;
|
|
890
|
-
AdvancedBackupSettings?: AdvancedBackupSetting[];
|
|
882
|
+
BackupPlan?: BackupPlan | undefined;
|
|
883
|
+
BackupPlanId?: string | undefined;
|
|
884
|
+
BackupPlanArn?: string | undefined;
|
|
885
|
+
VersionId?: string | undefined;
|
|
886
|
+
CreatorRequestId?: string | undefined;
|
|
887
|
+
CreationDate?: Date | undefined;
|
|
888
|
+
DeletionDate?: Date | undefined;
|
|
889
|
+
LastExecutionDate?: Date | undefined;
|
|
890
|
+
AdvancedBackupSettings?: AdvancedBackupSetting[] | undefined;
|
|
891
891
|
}
|
|
892
892
|
export interface GetBackupPlanFromJSONInput {
|
|
893
893
|
BackupPlanTemplateJson: string | undefined;
|
|
894
894
|
}
|
|
895
895
|
export interface GetBackupPlanFromJSONOutput {
|
|
896
|
-
BackupPlan?: BackupPlan;
|
|
896
|
+
BackupPlan?: BackupPlan | undefined;
|
|
897
897
|
}
|
|
898
898
|
export interface GetBackupPlanFromTemplateInput {
|
|
899
899
|
BackupPlanTemplateId: string | undefined;
|
|
900
900
|
}
|
|
901
901
|
export interface GetBackupPlanFromTemplateOutput {
|
|
902
|
-
BackupPlanDocument?: BackupPlan;
|
|
902
|
+
BackupPlanDocument?: BackupPlan | undefined;
|
|
903
903
|
}
|
|
904
904
|
export interface GetBackupSelectionInput {
|
|
905
905
|
BackupPlanId: string | undefined;
|
|
906
906
|
SelectionId: string | undefined;
|
|
907
907
|
}
|
|
908
908
|
export interface GetBackupSelectionOutput {
|
|
909
|
-
BackupSelection?: BackupSelection;
|
|
910
|
-
SelectionId?: string;
|
|
911
|
-
BackupPlanId?: string;
|
|
912
|
-
CreationDate?: Date;
|
|
913
|
-
CreatorRequestId?: string;
|
|
909
|
+
BackupSelection?: BackupSelection | undefined;
|
|
910
|
+
SelectionId?: string | undefined;
|
|
911
|
+
BackupPlanId?: string | undefined;
|
|
912
|
+
CreationDate?: Date | undefined;
|
|
913
|
+
CreatorRequestId?: string | undefined;
|
|
914
914
|
}
|
|
915
915
|
export interface GetBackupVaultAccessPolicyInput {
|
|
916
916
|
BackupVaultName: string | undefined;
|
|
917
917
|
}
|
|
918
918
|
export interface GetBackupVaultAccessPolicyOutput {
|
|
919
|
-
BackupVaultName?: string;
|
|
920
|
-
BackupVaultArn?: string;
|
|
921
|
-
Policy?: string;
|
|
919
|
+
BackupVaultName?: string | undefined;
|
|
920
|
+
BackupVaultArn?: string | undefined;
|
|
921
|
+
Policy?: string | undefined;
|
|
922
922
|
}
|
|
923
923
|
export interface GetBackupVaultNotificationsInput {
|
|
924
924
|
BackupVaultName: string | undefined;
|
|
925
925
|
}
|
|
926
926
|
export interface GetBackupVaultNotificationsOutput {
|
|
927
|
-
BackupVaultName?: string;
|
|
928
|
-
BackupVaultArn?: string;
|
|
929
|
-
SNSTopicArn?: string;
|
|
930
|
-
BackupVaultEvents?: BackupVaultEvent[];
|
|
927
|
+
BackupVaultName?: string | undefined;
|
|
928
|
+
BackupVaultArn?: string | undefined;
|
|
929
|
+
SNSTopicArn?: string | undefined;
|
|
930
|
+
BackupVaultEvents?: BackupVaultEvent[] | undefined;
|
|
931
931
|
}
|
|
932
932
|
export interface GetLegalHoldInput {
|
|
933
933
|
LegalHoldId: string | undefined;
|
|
934
934
|
}
|
|
935
935
|
export interface GetLegalHoldOutput {
|
|
936
|
-
Title?: string;
|
|
937
|
-
Status?: LegalHoldStatus;
|
|
938
|
-
Description?: string;
|
|
939
|
-
CancelDescription?: string;
|
|
940
|
-
LegalHoldId?: string;
|
|
941
|
-
LegalHoldArn?: string;
|
|
942
|
-
CreationDate?: Date;
|
|
943
|
-
CancellationDate?: Date;
|
|
944
|
-
RetainRecordUntil?: Date;
|
|
945
|
-
RecoveryPointSelection?: RecoveryPointSelection;
|
|
936
|
+
Title?: string | undefined;
|
|
937
|
+
Status?: LegalHoldStatus | undefined;
|
|
938
|
+
Description?: string | undefined;
|
|
939
|
+
CancelDescription?: string | undefined;
|
|
940
|
+
LegalHoldId?: string | undefined;
|
|
941
|
+
LegalHoldArn?: string | undefined;
|
|
942
|
+
CreationDate?: Date | undefined;
|
|
943
|
+
CancellationDate?: Date | undefined;
|
|
944
|
+
RetainRecordUntil?: Date | undefined;
|
|
945
|
+
RecoveryPointSelection?: RecoveryPointSelection | undefined;
|
|
946
946
|
}
|
|
947
947
|
export interface GetRecoveryPointRestoreMetadataInput {
|
|
948
948
|
BackupVaultName: string | undefined;
|
|
949
949
|
RecoveryPointArn: string | undefined;
|
|
950
|
-
BackupVaultAccountId?: string;
|
|
950
|
+
BackupVaultAccountId?: string | undefined;
|
|
951
951
|
}
|
|
952
952
|
export interface GetRecoveryPointRestoreMetadataOutput {
|
|
953
|
-
BackupVaultArn?: string;
|
|
954
|
-
RecoveryPointArn?: string;
|
|
955
|
-
RestoreMetadata?: Record<string, string
|
|
956
|
-
ResourceType?: string;
|
|
953
|
+
BackupVaultArn?: string | undefined;
|
|
954
|
+
RecoveryPointArn?: string | undefined;
|
|
955
|
+
RestoreMetadata?: Record<string, string> | undefined;
|
|
956
|
+
ResourceType?: string | undefined;
|
|
957
957
|
}
|
|
958
958
|
export interface GetRestoreJobMetadataInput {
|
|
959
959
|
RestoreJobId: string | undefined;
|
|
960
960
|
}
|
|
961
961
|
export interface GetRestoreJobMetadataOutput {
|
|
962
|
-
RestoreJobId?: string;
|
|
963
|
-
Metadata?: Record<string, string
|
|
962
|
+
RestoreJobId?: string | undefined;
|
|
963
|
+
Metadata?: Record<string, string> | undefined;
|
|
964
964
|
}
|
|
965
965
|
export interface GetRestoreTestingInferredMetadataInput {
|
|
966
|
-
BackupVaultAccountId?: string;
|
|
966
|
+
BackupVaultAccountId?: string | undefined;
|
|
967
967
|
BackupVaultName: string | undefined;
|
|
968
968
|
RecoveryPointArn: string | undefined;
|
|
969
969
|
}
|
|
@@ -975,15 +975,15 @@ export interface GetRestoreTestingPlanInput {
|
|
|
975
975
|
}
|
|
976
976
|
export interface RestoreTestingPlanForGet {
|
|
977
977
|
CreationTime: Date | undefined;
|
|
978
|
-
CreatorRequestId?: string;
|
|
979
|
-
LastExecutionTime?: Date;
|
|
980
|
-
LastUpdateTime?: Date;
|
|
978
|
+
CreatorRequestId?: string | undefined;
|
|
979
|
+
LastExecutionTime?: Date | undefined;
|
|
980
|
+
LastUpdateTime?: Date | undefined;
|
|
981
981
|
RecoveryPointSelection: RestoreTestingRecoveryPointSelection | undefined;
|
|
982
982
|
RestoreTestingPlanArn: string | undefined;
|
|
983
983
|
RestoreTestingPlanName: string | undefined;
|
|
984
984
|
ScheduleExpression: string | undefined;
|
|
985
|
-
ScheduleExpressionTimezone?: string;
|
|
986
|
-
StartWindowHours?: number;
|
|
985
|
+
ScheduleExpressionTimezone?: string | undefined;
|
|
986
|
+
StartWindowHours?: number | undefined;
|
|
987
987
|
}
|
|
988
988
|
export interface GetRestoreTestingPlanOutput {
|
|
989
989
|
RestoreTestingPlan: RestoreTestingPlanForGet | undefined;
|
|
@@ -994,339 +994,339 @@ export interface GetRestoreTestingSelectionInput {
|
|
|
994
994
|
}
|
|
995
995
|
export interface RestoreTestingSelectionForGet {
|
|
996
996
|
CreationTime: Date | undefined;
|
|
997
|
-
CreatorRequestId?: string;
|
|
997
|
+
CreatorRequestId?: string | undefined;
|
|
998
998
|
IamRoleArn: string | undefined;
|
|
999
|
-
ProtectedResourceArns?: string[];
|
|
1000
|
-
ProtectedResourceConditions?: ProtectedResourceConditions;
|
|
999
|
+
ProtectedResourceArns?: string[] | undefined;
|
|
1000
|
+
ProtectedResourceConditions?: ProtectedResourceConditions | undefined;
|
|
1001
1001
|
ProtectedResourceType: string | undefined;
|
|
1002
|
-
RestoreMetadataOverrides?: Record<string, string
|
|
1002
|
+
RestoreMetadataOverrides?: Record<string, string> | undefined;
|
|
1003
1003
|
RestoreTestingPlanName: string | undefined;
|
|
1004
1004
|
RestoreTestingSelectionName: string | undefined;
|
|
1005
|
-
ValidationWindowHours?: number;
|
|
1005
|
+
ValidationWindowHours?: number | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
export interface GetRestoreTestingSelectionOutput {
|
|
1008
1008
|
RestoreTestingSelection: RestoreTestingSelectionForGet | undefined;
|
|
1009
1009
|
}
|
|
1010
1010
|
export interface GetSupportedResourceTypesOutput {
|
|
1011
|
-
ResourceTypes?: string[];
|
|
1011
|
+
ResourceTypes?: string[] | undefined;
|
|
1012
1012
|
}
|
|
1013
1013
|
export interface ListBackupJobsInput {
|
|
1014
|
-
NextToken?: string;
|
|
1015
|
-
MaxResults?: number;
|
|
1016
|
-
ByResourceArn?: string;
|
|
1017
|
-
ByState?: BackupJobState;
|
|
1018
|
-
ByBackupVaultName?: string;
|
|
1019
|
-
ByCreatedBefore?: Date;
|
|
1020
|
-
ByCreatedAfter?: Date;
|
|
1021
|
-
ByResourceType?: string;
|
|
1022
|
-
ByAccountId?: string;
|
|
1023
|
-
ByCompleteAfter?: Date;
|
|
1024
|
-
ByCompleteBefore?: Date;
|
|
1025
|
-
ByParentJobId?: string;
|
|
1026
|
-
ByMessageCategory?: string;
|
|
1014
|
+
NextToken?: string | undefined;
|
|
1015
|
+
MaxResults?: number | undefined;
|
|
1016
|
+
ByResourceArn?: string | undefined;
|
|
1017
|
+
ByState?: BackupJobState | undefined;
|
|
1018
|
+
ByBackupVaultName?: string | undefined;
|
|
1019
|
+
ByCreatedBefore?: Date | undefined;
|
|
1020
|
+
ByCreatedAfter?: Date | undefined;
|
|
1021
|
+
ByResourceType?: string | undefined;
|
|
1022
|
+
ByAccountId?: string | undefined;
|
|
1023
|
+
ByCompleteAfter?: Date | undefined;
|
|
1024
|
+
ByCompleteBefore?: Date | undefined;
|
|
1025
|
+
ByParentJobId?: string | undefined;
|
|
1026
|
+
ByMessageCategory?: string | undefined;
|
|
1027
1027
|
}
|
|
1028
1028
|
export interface ListBackupJobsOutput {
|
|
1029
|
-
BackupJobs?: BackupJob[];
|
|
1030
|
-
NextToken?: string;
|
|
1029
|
+
BackupJobs?: BackupJob[] | undefined;
|
|
1030
|
+
NextToken?: string | undefined;
|
|
1031
1031
|
}
|
|
1032
1032
|
export interface ListBackupJobSummariesInput {
|
|
1033
|
-
AccountId?: string;
|
|
1034
|
-
State?: BackupJobStatus;
|
|
1035
|
-
ResourceType?: string;
|
|
1036
|
-
MessageCategory?: string;
|
|
1037
|
-
AggregationPeriod?: AggregationPeriod;
|
|
1038
|
-
MaxResults?: number;
|
|
1039
|
-
NextToken?: string;
|
|
1033
|
+
AccountId?: string | undefined;
|
|
1034
|
+
State?: BackupJobStatus | undefined;
|
|
1035
|
+
ResourceType?: string | undefined;
|
|
1036
|
+
MessageCategory?: string | undefined;
|
|
1037
|
+
AggregationPeriod?: AggregationPeriod | undefined;
|
|
1038
|
+
MaxResults?: number | undefined;
|
|
1039
|
+
NextToken?: string | undefined;
|
|
1040
1040
|
}
|
|
1041
1041
|
export interface ListBackupJobSummariesOutput {
|
|
1042
|
-
BackupJobSummaries?: BackupJobSummary[];
|
|
1043
|
-
AggregationPeriod?: string;
|
|
1044
|
-
NextToken?: string;
|
|
1042
|
+
BackupJobSummaries?: BackupJobSummary[] | undefined;
|
|
1043
|
+
AggregationPeriod?: string | undefined;
|
|
1044
|
+
NextToken?: string | undefined;
|
|
1045
1045
|
}
|
|
1046
1046
|
export interface ListBackupPlansInput {
|
|
1047
|
-
NextToken?: string;
|
|
1048
|
-
MaxResults?: number;
|
|
1049
|
-
IncludeDeleted?: boolean;
|
|
1047
|
+
NextToken?: string | undefined;
|
|
1048
|
+
MaxResults?: number | undefined;
|
|
1049
|
+
IncludeDeleted?: boolean | undefined;
|
|
1050
1050
|
}
|
|
1051
1051
|
export interface ListBackupPlansOutput {
|
|
1052
|
-
NextToken?: string;
|
|
1053
|
-
BackupPlansList?: BackupPlansListMember[];
|
|
1052
|
+
NextToken?: string | undefined;
|
|
1053
|
+
BackupPlansList?: BackupPlansListMember[] | undefined;
|
|
1054
1054
|
}
|
|
1055
1055
|
export interface ListBackupPlanTemplatesInput {
|
|
1056
|
-
NextToken?: string;
|
|
1057
|
-
MaxResults?: number;
|
|
1056
|
+
NextToken?: string | undefined;
|
|
1057
|
+
MaxResults?: number | undefined;
|
|
1058
1058
|
}
|
|
1059
1059
|
export interface ListBackupPlanTemplatesOutput {
|
|
1060
|
-
NextToken?: string;
|
|
1061
|
-
BackupPlanTemplatesList?: BackupPlanTemplatesListMember[];
|
|
1060
|
+
NextToken?: string | undefined;
|
|
1061
|
+
BackupPlanTemplatesList?: BackupPlanTemplatesListMember[] | undefined;
|
|
1062
1062
|
}
|
|
1063
1063
|
export interface ListBackupPlanVersionsInput {
|
|
1064
1064
|
BackupPlanId: string | undefined;
|
|
1065
|
-
NextToken?: string;
|
|
1066
|
-
MaxResults?: number;
|
|
1065
|
+
NextToken?: string | undefined;
|
|
1066
|
+
MaxResults?: number | undefined;
|
|
1067
1067
|
}
|
|
1068
1068
|
export interface ListBackupPlanVersionsOutput {
|
|
1069
|
-
NextToken?: string;
|
|
1070
|
-
BackupPlanVersionsList?: BackupPlansListMember[];
|
|
1069
|
+
NextToken?: string | undefined;
|
|
1070
|
+
BackupPlanVersionsList?: BackupPlansListMember[] | undefined;
|
|
1071
1071
|
}
|
|
1072
1072
|
export interface ListBackupSelectionsInput {
|
|
1073
1073
|
BackupPlanId: string | undefined;
|
|
1074
|
-
NextToken?: string;
|
|
1075
|
-
MaxResults?: number;
|
|
1074
|
+
NextToken?: string | undefined;
|
|
1075
|
+
MaxResults?: number | undefined;
|
|
1076
1076
|
}
|
|
1077
1077
|
export interface ListBackupSelectionsOutput {
|
|
1078
|
-
NextToken?: string;
|
|
1079
|
-
BackupSelectionsList?: BackupSelectionsListMember[];
|
|
1078
|
+
NextToken?: string | undefined;
|
|
1079
|
+
BackupSelectionsList?: BackupSelectionsListMember[] | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
export interface ListBackupVaultsInput {
|
|
1082
|
-
ByVaultType?: VaultType;
|
|
1083
|
-
ByShared?: boolean;
|
|
1084
|
-
NextToken?: string;
|
|
1085
|
-
MaxResults?: number;
|
|
1082
|
+
ByVaultType?: VaultType | undefined;
|
|
1083
|
+
ByShared?: boolean | undefined;
|
|
1084
|
+
NextToken?: string | undefined;
|
|
1085
|
+
MaxResults?: number | undefined;
|
|
1086
1086
|
}
|
|
1087
1087
|
export interface ListBackupVaultsOutput {
|
|
1088
|
-
BackupVaultList?: BackupVaultListMember[];
|
|
1089
|
-
NextToken?: string;
|
|
1088
|
+
BackupVaultList?: BackupVaultListMember[] | undefined;
|
|
1089
|
+
NextToken?: string | undefined;
|
|
1090
1090
|
}
|
|
1091
1091
|
export interface ListCopyJobsInput {
|
|
1092
|
-
NextToken?: string;
|
|
1093
|
-
MaxResults?: number;
|
|
1094
|
-
ByResourceArn?: string;
|
|
1095
|
-
ByState?: CopyJobState;
|
|
1096
|
-
ByCreatedBefore?: Date;
|
|
1097
|
-
ByCreatedAfter?: Date;
|
|
1098
|
-
ByResourceType?: string;
|
|
1099
|
-
ByDestinationVaultArn?: string;
|
|
1100
|
-
ByAccountId?: string;
|
|
1101
|
-
ByCompleteBefore?: Date;
|
|
1102
|
-
ByCompleteAfter?: Date;
|
|
1103
|
-
ByParentJobId?: string;
|
|
1104
|
-
ByMessageCategory?: string;
|
|
1092
|
+
NextToken?: string | undefined;
|
|
1093
|
+
MaxResults?: number | undefined;
|
|
1094
|
+
ByResourceArn?: string | undefined;
|
|
1095
|
+
ByState?: CopyJobState | undefined;
|
|
1096
|
+
ByCreatedBefore?: Date | undefined;
|
|
1097
|
+
ByCreatedAfter?: Date | undefined;
|
|
1098
|
+
ByResourceType?: string | undefined;
|
|
1099
|
+
ByDestinationVaultArn?: string | undefined;
|
|
1100
|
+
ByAccountId?: string | undefined;
|
|
1101
|
+
ByCompleteBefore?: Date | undefined;
|
|
1102
|
+
ByCompleteAfter?: Date | undefined;
|
|
1103
|
+
ByParentJobId?: string | undefined;
|
|
1104
|
+
ByMessageCategory?: string | undefined;
|
|
1105
1105
|
}
|
|
1106
1106
|
export interface ListCopyJobsOutput {
|
|
1107
|
-
CopyJobs?: CopyJob[];
|
|
1108
|
-
NextToken?: string;
|
|
1107
|
+
CopyJobs?: CopyJob[] | undefined;
|
|
1108
|
+
NextToken?: string | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
export interface ListCopyJobSummariesInput {
|
|
1111
|
-
AccountId?: string;
|
|
1112
|
-
State?: CopyJobStatus;
|
|
1113
|
-
ResourceType?: string;
|
|
1114
|
-
MessageCategory?: string;
|
|
1115
|
-
AggregationPeriod?: AggregationPeriod;
|
|
1116
|
-
MaxResults?: number;
|
|
1117
|
-
NextToken?: string;
|
|
1111
|
+
AccountId?: string | undefined;
|
|
1112
|
+
State?: CopyJobStatus | undefined;
|
|
1113
|
+
ResourceType?: string | undefined;
|
|
1114
|
+
MessageCategory?: string | undefined;
|
|
1115
|
+
AggregationPeriod?: AggregationPeriod | undefined;
|
|
1116
|
+
MaxResults?: number | undefined;
|
|
1117
|
+
NextToken?: string | undefined;
|
|
1118
1118
|
}
|
|
1119
1119
|
export interface ListCopyJobSummariesOutput {
|
|
1120
|
-
CopyJobSummaries?: CopyJobSummary[];
|
|
1121
|
-
AggregationPeriod?: string;
|
|
1122
|
-
NextToken?: string;
|
|
1120
|
+
CopyJobSummaries?: CopyJobSummary[] | undefined;
|
|
1121
|
+
AggregationPeriod?: string | undefined;
|
|
1122
|
+
NextToken?: string | undefined;
|
|
1123
1123
|
}
|
|
1124
1124
|
export interface ListFrameworksInput {
|
|
1125
|
-
MaxResults?: number;
|
|
1126
|
-
NextToken?: string;
|
|
1125
|
+
MaxResults?: number | undefined;
|
|
1126
|
+
NextToken?: string | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface Framework {
|
|
1129
|
-
FrameworkName?: string;
|
|
1130
|
-
FrameworkArn?: string;
|
|
1131
|
-
FrameworkDescription?: string;
|
|
1132
|
-
NumberOfControls?: number;
|
|
1133
|
-
CreationTime?: Date;
|
|
1134
|
-
DeploymentStatus?: string;
|
|
1129
|
+
FrameworkName?: string | undefined;
|
|
1130
|
+
FrameworkArn?: string | undefined;
|
|
1131
|
+
FrameworkDescription?: string | undefined;
|
|
1132
|
+
NumberOfControls?: number | undefined;
|
|
1133
|
+
CreationTime?: Date | undefined;
|
|
1134
|
+
DeploymentStatus?: string | undefined;
|
|
1135
1135
|
}
|
|
1136
1136
|
export interface ListFrameworksOutput {
|
|
1137
|
-
Frameworks?: Framework[];
|
|
1138
|
-
NextToken?: string;
|
|
1137
|
+
Frameworks?: Framework[] | undefined;
|
|
1138
|
+
NextToken?: string | undefined;
|
|
1139
1139
|
}
|
|
1140
1140
|
export interface ListLegalHoldsInput {
|
|
1141
|
-
NextToken?: string;
|
|
1142
|
-
MaxResults?: number;
|
|
1141
|
+
NextToken?: string | undefined;
|
|
1142
|
+
MaxResults?: number | undefined;
|
|
1143
1143
|
}
|
|
1144
1144
|
export interface LegalHold {
|
|
1145
|
-
Title?: string;
|
|
1146
|
-
Status?: LegalHoldStatus;
|
|
1147
|
-
Description?: string;
|
|
1148
|
-
LegalHoldId?: string;
|
|
1149
|
-
LegalHoldArn?: string;
|
|
1150
|
-
CreationDate?: Date;
|
|
1151
|
-
CancellationDate?: Date;
|
|
1145
|
+
Title?: string | undefined;
|
|
1146
|
+
Status?: LegalHoldStatus | undefined;
|
|
1147
|
+
Description?: string | undefined;
|
|
1148
|
+
LegalHoldId?: string | undefined;
|
|
1149
|
+
LegalHoldArn?: string | undefined;
|
|
1150
|
+
CreationDate?: Date | undefined;
|
|
1151
|
+
CancellationDate?: Date | undefined;
|
|
1152
1152
|
}
|
|
1153
1153
|
export interface ListLegalHoldsOutput {
|
|
1154
|
-
NextToken?: string;
|
|
1155
|
-
LegalHolds?: LegalHold[];
|
|
1154
|
+
NextToken?: string | undefined;
|
|
1155
|
+
LegalHolds?: LegalHold[] | undefined;
|
|
1156
1156
|
}
|
|
1157
1157
|
export interface ListProtectedResourcesInput {
|
|
1158
|
-
NextToken?: string;
|
|
1159
|
-
MaxResults?: number;
|
|
1158
|
+
NextToken?: string | undefined;
|
|
1159
|
+
MaxResults?: number | undefined;
|
|
1160
1160
|
}
|
|
1161
1161
|
export interface ProtectedResource {
|
|
1162
|
-
ResourceArn?: string;
|
|
1163
|
-
ResourceType?: string;
|
|
1164
|
-
LastBackupTime?: Date;
|
|
1165
|
-
ResourceName?: string;
|
|
1166
|
-
LastBackupVaultArn?: string;
|
|
1167
|
-
LastRecoveryPointArn?: string;
|
|
1162
|
+
ResourceArn?: string | undefined;
|
|
1163
|
+
ResourceType?: string | undefined;
|
|
1164
|
+
LastBackupTime?: Date | undefined;
|
|
1165
|
+
ResourceName?: string | undefined;
|
|
1166
|
+
LastBackupVaultArn?: string | undefined;
|
|
1167
|
+
LastRecoveryPointArn?: string | undefined;
|
|
1168
1168
|
}
|
|
1169
1169
|
export interface ListProtectedResourcesOutput {
|
|
1170
|
-
Results?: ProtectedResource[];
|
|
1171
|
-
NextToken?: string;
|
|
1170
|
+
Results?: ProtectedResource[] | undefined;
|
|
1171
|
+
NextToken?: string | undefined;
|
|
1172
1172
|
}
|
|
1173
1173
|
export interface ListProtectedResourcesByBackupVaultInput {
|
|
1174
1174
|
BackupVaultName: string | undefined;
|
|
1175
|
-
BackupVaultAccountId?: string;
|
|
1176
|
-
NextToken?: string;
|
|
1177
|
-
MaxResults?: number;
|
|
1175
|
+
BackupVaultAccountId?: string | undefined;
|
|
1176
|
+
NextToken?: string | undefined;
|
|
1177
|
+
MaxResults?: number | undefined;
|
|
1178
1178
|
}
|
|
1179
1179
|
export interface ListProtectedResourcesByBackupVaultOutput {
|
|
1180
|
-
Results?: ProtectedResource[];
|
|
1181
|
-
NextToken?: string;
|
|
1180
|
+
Results?: ProtectedResource[] | undefined;
|
|
1181
|
+
NextToken?: string | undefined;
|
|
1182
1182
|
}
|
|
1183
1183
|
export interface ListRecoveryPointsByBackupVaultInput {
|
|
1184
1184
|
BackupVaultName: string | undefined;
|
|
1185
|
-
BackupVaultAccountId?: string;
|
|
1186
|
-
NextToken?: string;
|
|
1187
|
-
MaxResults?: number;
|
|
1188
|
-
ByResourceArn?: string;
|
|
1189
|
-
ByResourceType?: string;
|
|
1190
|
-
ByBackupPlanId?: string;
|
|
1191
|
-
ByCreatedBefore?: Date;
|
|
1192
|
-
ByCreatedAfter?: Date;
|
|
1193
|
-
ByParentRecoveryPointArn?: string;
|
|
1185
|
+
BackupVaultAccountId?: string | undefined;
|
|
1186
|
+
NextToken?: string | undefined;
|
|
1187
|
+
MaxResults?: number | undefined;
|
|
1188
|
+
ByResourceArn?: string | undefined;
|
|
1189
|
+
ByResourceType?: string | undefined;
|
|
1190
|
+
ByBackupPlanId?: string | undefined;
|
|
1191
|
+
ByCreatedBefore?: Date | undefined;
|
|
1192
|
+
ByCreatedAfter?: Date | undefined;
|
|
1193
|
+
ByParentRecoveryPointArn?: string | undefined;
|
|
1194
1194
|
}
|
|
1195
1195
|
export interface RecoveryPointByBackupVault {
|
|
1196
|
-
RecoveryPointArn?: string;
|
|
1197
|
-
BackupVaultName?: string;
|
|
1198
|
-
BackupVaultArn?: string;
|
|
1199
|
-
SourceBackupVaultArn?: string;
|
|
1200
|
-
ResourceArn?: string;
|
|
1201
|
-
ResourceType?: string;
|
|
1202
|
-
CreatedBy?: RecoveryPointCreator;
|
|
1203
|
-
IamRoleArn?: string;
|
|
1204
|
-
Status?: RecoveryPointStatus;
|
|
1205
|
-
StatusMessage?: string;
|
|
1206
|
-
CreationDate?: Date;
|
|
1207
|
-
CompletionDate?: Date;
|
|
1208
|
-
BackupSizeInBytes?: number;
|
|
1209
|
-
CalculatedLifecycle?: CalculatedLifecycle;
|
|
1210
|
-
Lifecycle?: Lifecycle;
|
|
1211
|
-
EncryptionKeyArn?: string;
|
|
1212
|
-
IsEncrypted?: boolean;
|
|
1213
|
-
LastRestoreTime?: Date;
|
|
1214
|
-
ParentRecoveryPointArn?: string;
|
|
1215
|
-
CompositeMemberIdentifier?: string;
|
|
1216
|
-
IsParent?: boolean;
|
|
1217
|
-
ResourceName?: string;
|
|
1218
|
-
VaultType?: VaultType;
|
|
1196
|
+
RecoveryPointArn?: string | undefined;
|
|
1197
|
+
BackupVaultName?: string | undefined;
|
|
1198
|
+
BackupVaultArn?: string | undefined;
|
|
1199
|
+
SourceBackupVaultArn?: string | undefined;
|
|
1200
|
+
ResourceArn?: string | undefined;
|
|
1201
|
+
ResourceType?: string | undefined;
|
|
1202
|
+
CreatedBy?: RecoveryPointCreator | undefined;
|
|
1203
|
+
IamRoleArn?: string | undefined;
|
|
1204
|
+
Status?: RecoveryPointStatus | undefined;
|
|
1205
|
+
StatusMessage?: string | undefined;
|
|
1206
|
+
CreationDate?: Date | undefined;
|
|
1207
|
+
CompletionDate?: Date | undefined;
|
|
1208
|
+
BackupSizeInBytes?: number | undefined;
|
|
1209
|
+
CalculatedLifecycle?: CalculatedLifecycle | undefined;
|
|
1210
|
+
Lifecycle?: Lifecycle | undefined;
|
|
1211
|
+
EncryptionKeyArn?: string | undefined;
|
|
1212
|
+
IsEncrypted?: boolean | undefined;
|
|
1213
|
+
LastRestoreTime?: Date | undefined;
|
|
1214
|
+
ParentRecoveryPointArn?: string | undefined;
|
|
1215
|
+
CompositeMemberIdentifier?: string | undefined;
|
|
1216
|
+
IsParent?: boolean | undefined;
|
|
1217
|
+
ResourceName?: string | undefined;
|
|
1218
|
+
VaultType?: VaultType | undefined;
|
|
1219
1219
|
}
|
|
1220
1220
|
export interface ListRecoveryPointsByBackupVaultOutput {
|
|
1221
|
-
NextToken?: string;
|
|
1222
|
-
RecoveryPoints?: RecoveryPointByBackupVault[];
|
|
1221
|
+
NextToken?: string | undefined;
|
|
1222
|
+
RecoveryPoints?: RecoveryPointByBackupVault[] | undefined;
|
|
1223
1223
|
}
|
|
1224
1224
|
export interface ListRecoveryPointsByLegalHoldInput {
|
|
1225
1225
|
LegalHoldId: string | undefined;
|
|
1226
|
-
NextToken?: string;
|
|
1227
|
-
MaxResults?: number;
|
|
1226
|
+
NextToken?: string | undefined;
|
|
1227
|
+
MaxResults?: number | undefined;
|
|
1228
1228
|
}
|
|
1229
1229
|
export interface RecoveryPointMember {
|
|
1230
|
-
RecoveryPointArn?: string;
|
|
1231
|
-
ResourceArn?: string;
|
|
1232
|
-
ResourceType?: string;
|
|
1233
|
-
BackupVaultName?: string;
|
|
1230
|
+
RecoveryPointArn?: string | undefined;
|
|
1231
|
+
ResourceArn?: string | undefined;
|
|
1232
|
+
ResourceType?: string | undefined;
|
|
1233
|
+
BackupVaultName?: string | undefined;
|
|
1234
1234
|
}
|
|
1235
1235
|
export interface ListRecoveryPointsByLegalHoldOutput {
|
|
1236
|
-
RecoveryPoints?: RecoveryPointMember[];
|
|
1237
|
-
NextToken?: string;
|
|
1236
|
+
RecoveryPoints?: RecoveryPointMember[] | undefined;
|
|
1237
|
+
NextToken?: string | undefined;
|
|
1238
1238
|
}
|
|
1239
1239
|
export interface ListRecoveryPointsByResourceInput {
|
|
1240
1240
|
ResourceArn: string | undefined;
|
|
1241
|
-
NextToken?: string;
|
|
1242
|
-
MaxResults?: number;
|
|
1243
|
-
ManagedByAWSBackupOnly?: boolean;
|
|
1241
|
+
NextToken?: string | undefined;
|
|
1242
|
+
MaxResults?: number | undefined;
|
|
1243
|
+
ManagedByAWSBackupOnly?: boolean | undefined;
|
|
1244
1244
|
}
|
|
1245
1245
|
export interface RecoveryPointByResource {
|
|
1246
|
-
RecoveryPointArn?: string;
|
|
1247
|
-
CreationDate?: Date;
|
|
1248
|
-
Status?: RecoveryPointStatus;
|
|
1249
|
-
StatusMessage?: string;
|
|
1250
|
-
EncryptionKeyArn?: string;
|
|
1251
|
-
BackupSizeBytes?: number;
|
|
1252
|
-
BackupVaultName?: string;
|
|
1253
|
-
IsParent?: boolean;
|
|
1254
|
-
ParentRecoveryPointArn?: string;
|
|
1255
|
-
ResourceName?: string;
|
|
1256
|
-
VaultType?: VaultType;
|
|
1246
|
+
RecoveryPointArn?: string | undefined;
|
|
1247
|
+
CreationDate?: Date | undefined;
|
|
1248
|
+
Status?: RecoveryPointStatus | undefined;
|
|
1249
|
+
StatusMessage?: string | undefined;
|
|
1250
|
+
EncryptionKeyArn?: string | undefined;
|
|
1251
|
+
BackupSizeBytes?: number | undefined;
|
|
1252
|
+
BackupVaultName?: string | undefined;
|
|
1253
|
+
IsParent?: boolean | undefined;
|
|
1254
|
+
ParentRecoveryPointArn?: string | undefined;
|
|
1255
|
+
ResourceName?: string | undefined;
|
|
1256
|
+
VaultType?: VaultType | undefined;
|
|
1257
1257
|
}
|
|
1258
1258
|
export interface ListRecoveryPointsByResourceOutput {
|
|
1259
|
-
NextToken?: string;
|
|
1260
|
-
RecoveryPoints?: RecoveryPointByResource[];
|
|
1259
|
+
NextToken?: string | undefined;
|
|
1260
|
+
RecoveryPoints?: RecoveryPointByResource[] | undefined;
|
|
1261
1261
|
}
|
|
1262
1262
|
export interface ListReportJobsInput {
|
|
1263
|
-
ByReportPlanName?: string;
|
|
1264
|
-
ByCreationBefore?: Date;
|
|
1265
|
-
ByCreationAfter?: Date;
|
|
1266
|
-
ByStatus?: string;
|
|
1267
|
-
MaxResults?: number;
|
|
1268
|
-
NextToken?: string;
|
|
1263
|
+
ByReportPlanName?: string | undefined;
|
|
1264
|
+
ByCreationBefore?: Date | undefined;
|
|
1265
|
+
ByCreationAfter?: Date | undefined;
|
|
1266
|
+
ByStatus?: string | undefined;
|
|
1267
|
+
MaxResults?: number | undefined;
|
|
1268
|
+
NextToken?: string | undefined;
|
|
1269
1269
|
}
|
|
1270
1270
|
export interface ListReportJobsOutput {
|
|
1271
|
-
ReportJobs?: ReportJob[];
|
|
1272
|
-
NextToken?: string;
|
|
1271
|
+
ReportJobs?: ReportJob[] | undefined;
|
|
1272
|
+
NextToken?: string | undefined;
|
|
1273
1273
|
}
|
|
1274
1274
|
export interface ListReportPlansInput {
|
|
1275
|
-
MaxResults?: number;
|
|
1276
|
-
NextToken?: string;
|
|
1275
|
+
MaxResults?: number | undefined;
|
|
1276
|
+
NextToken?: string | undefined;
|
|
1277
1277
|
}
|
|
1278
1278
|
export interface ListReportPlansOutput {
|
|
1279
|
-
ReportPlans?: ReportPlan[];
|
|
1280
|
-
NextToken?: string;
|
|
1279
|
+
ReportPlans?: ReportPlan[] | undefined;
|
|
1280
|
+
NextToken?: string | undefined;
|
|
1281
1281
|
}
|
|
1282
1282
|
export interface ListRestoreJobsInput {
|
|
1283
|
-
NextToken?: string;
|
|
1284
|
-
MaxResults?: number;
|
|
1285
|
-
ByAccountId?: string;
|
|
1286
|
-
ByResourceType?: string;
|
|
1287
|
-
ByCreatedBefore?: Date;
|
|
1288
|
-
ByCreatedAfter?: Date;
|
|
1289
|
-
ByStatus?: RestoreJobStatus;
|
|
1290
|
-
ByCompleteBefore?: Date;
|
|
1291
|
-
ByCompleteAfter?: Date;
|
|
1292
|
-
ByRestoreTestingPlanArn?: string;
|
|
1283
|
+
NextToken?: string | undefined;
|
|
1284
|
+
MaxResults?: number | undefined;
|
|
1285
|
+
ByAccountId?: string | undefined;
|
|
1286
|
+
ByResourceType?: string | undefined;
|
|
1287
|
+
ByCreatedBefore?: Date | undefined;
|
|
1288
|
+
ByCreatedAfter?: Date | undefined;
|
|
1289
|
+
ByStatus?: RestoreJobStatus | undefined;
|
|
1290
|
+
ByCompleteBefore?: Date | undefined;
|
|
1291
|
+
ByCompleteAfter?: Date | undefined;
|
|
1292
|
+
ByRestoreTestingPlanArn?: string | undefined;
|
|
1293
1293
|
}
|
|
1294
1294
|
export interface RestoreJobsListMember {
|
|
1295
|
-
AccountId?: string;
|
|
1296
|
-
RestoreJobId?: string;
|
|
1297
|
-
RecoveryPointArn?: string;
|
|
1298
|
-
CreationDate?: Date;
|
|
1299
|
-
CompletionDate?: Date;
|
|
1300
|
-
Status?: RestoreJobStatus;
|
|
1301
|
-
StatusMessage?: string;
|
|
1302
|
-
PercentDone?: string;
|
|
1303
|
-
BackupSizeInBytes?: number;
|
|
1304
|
-
IamRoleArn?: string;
|
|
1305
|
-
ExpectedCompletionTimeMinutes?: number;
|
|
1306
|
-
CreatedResourceArn?: string;
|
|
1307
|
-
ResourceType?: string;
|
|
1308
|
-
RecoveryPointCreationDate?: Date;
|
|
1309
|
-
CreatedBy?: RestoreJobCreator;
|
|
1310
|
-
ValidationStatus?: RestoreValidationStatus;
|
|
1311
|
-
ValidationStatusMessage?: string;
|
|
1312
|
-
DeletionStatus?: RestoreDeletionStatus;
|
|
1313
|
-
DeletionStatusMessage?: string;
|
|
1295
|
+
AccountId?: string | undefined;
|
|
1296
|
+
RestoreJobId?: string | undefined;
|
|
1297
|
+
RecoveryPointArn?: string | undefined;
|
|
1298
|
+
CreationDate?: Date | undefined;
|
|
1299
|
+
CompletionDate?: Date | undefined;
|
|
1300
|
+
Status?: RestoreJobStatus | undefined;
|
|
1301
|
+
StatusMessage?: string | undefined;
|
|
1302
|
+
PercentDone?: string | undefined;
|
|
1303
|
+
BackupSizeInBytes?: number | undefined;
|
|
1304
|
+
IamRoleArn?: string | undefined;
|
|
1305
|
+
ExpectedCompletionTimeMinutes?: number | undefined;
|
|
1306
|
+
CreatedResourceArn?: string | undefined;
|
|
1307
|
+
ResourceType?: string | undefined;
|
|
1308
|
+
RecoveryPointCreationDate?: Date | undefined;
|
|
1309
|
+
CreatedBy?: RestoreJobCreator | undefined;
|
|
1310
|
+
ValidationStatus?: RestoreValidationStatus | undefined;
|
|
1311
|
+
ValidationStatusMessage?: string | undefined;
|
|
1312
|
+
DeletionStatus?: RestoreDeletionStatus | undefined;
|
|
1313
|
+
DeletionStatusMessage?: string | undefined;
|
|
1314
1314
|
}
|
|
1315
1315
|
export interface ListRestoreJobsOutput {
|
|
1316
|
-
RestoreJobs?: RestoreJobsListMember[];
|
|
1317
|
-
NextToken?: string;
|
|
1316
|
+
RestoreJobs?: RestoreJobsListMember[] | undefined;
|
|
1317
|
+
NextToken?: string | undefined;
|
|
1318
1318
|
}
|
|
1319
1319
|
export interface ListRestoreJobsByProtectedResourceInput {
|
|
1320
1320
|
ResourceArn: string | undefined;
|
|
1321
|
-
ByStatus?: RestoreJobStatus;
|
|
1322
|
-
ByRecoveryPointCreationDateAfter?: Date;
|
|
1323
|
-
ByRecoveryPointCreationDateBefore?: Date;
|
|
1324
|
-
NextToken?: string;
|
|
1325
|
-
MaxResults?: number;
|
|
1321
|
+
ByStatus?: RestoreJobStatus | undefined;
|
|
1322
|
+
ByRecoveryPointCreationDateAfter?: Date | undefined;
|
|
1323
|
+
ByRecoveryPointCreationDateBefore?: Date | undefined;
|
|
1324
|
+
NextToken?: string | undefined;
|
|
1325
|
+
MaxResults?: number | undefined;
|
|
1326
1326
|
}
|
|
1327
1327
|
export interface ListRestoreJobsByProtectedResourceOutput {
|
|
1328
|
-
RestoreJobs?: RestoreJobsListMember[];
|
|
1329
|
-
NextToken?: string;
|
|
1328
|
+
RestoreJobs?: RestoreJobsListMember[] | undefined;
|
|
1329
|
+
NextToken?: string | undefined;
|
|
1330
1330
|
}
|
|
1331
1331
|
export declare const RestoreJobState: {
|
|
1332
1332
|
readonly ABORTED: "ABORTED";
|
|
@@ -1341,48 +1341,48 @@ export declare const RestoreJobState: {
|
|
|
1341
1341
|
export type RestoreJobState =
|
|
1342
1342
|
(typeof RestoreJobState)[keyof typeof RestoreJobState];
|
|
1343
1343
|
export interface ListRestoreJobSummariesInput {
|
|
1344
|
-
AccountId?: string;
|
|
1345
|
-
State?: RestoreJobState;
|
|
1346
|
-
ResourceType?: string;
|
|
1347
|
-
AggregationPeriod?: AggregationPeriod;
|
|
1348
|
-
MaxResults?: number;
|
|
1349
|
-
NextToken?: string;
|
|
1344
|
+
AccountId?: string | undefined;
|
|
1345
|
+
State?: RestoreJobState | undefined;
|
|
1346
|
+
ResourceType?: string | undefined;
|
|
1347
|
+
AggregationPeriod?: AggregationPeriod | undefined;
|
|
1348
|
+
MaxResults?: number | undefined;
|
|
1349
|
+
NextToken?: string | undefined;
|
|
1350
1350
|
}
|
|
1351
1351
|
export interface RestoreJobSummary {
|
|
1352
|
-
Region?: string;
|
|
1353
|
-
AccountId?: string;
|
|
1354
|
-
State?: RestoreJobState;
|
|
1355
|
-
ResourceType?: string;
|
|
1356
|
-
Count?: number;
|
|
1357
|
-
StartTime?: Date;
|
|
1358
|
-
EndTime?: Date;
|
|
1352
|
+
Region?: string | undefined;
|
|
1353
|
+
AccountId?: string | undefined;
|
|
1354
|
+
State?: RestoreJobState | undefined;
|
|
1355
|
+
ResourceType?: string | undefined;
|
|
1356
|
+
Count?: number | undefined;
|
|
1357
|
+
StartTime?: Date | undefined;
|
|
1358
|
+
EndTime?: Date | undefined;
|
|
1359
1359
|
}
|
|
1360
1360
|
export interface ListRestoreJobSummariesOutput {
|
|
1361
|
-
RestoreJobSummaries?: RestoreJobSummary[];
|
|
1362
|
-
AggregationPeriod?: string;
|
|
1363
|
-
NextToken?: string;
|
|
1361
|
+
RestoreJobSummaries?: RestoreJobSummary[] | undefined;
|
|
1362
|
+
AggregationPeriod?: string | undefined;
|
|
1363
|
+
NextToken?: string | undefined;
|
|
1364
1364
|
}
|
|
1365
1365
|
export interface ListRestoreTestingPlansInput {
|
|
1366
|
-
MaxResults?: number;
|
|
1367
|
-
NextToken?: string;
|
|
1366
|
+
MaxResults?: number | undefined;
|
|
1367
|
+
NextToken?: string | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
export interface RestoreTestingPlanForList {
|
|
1370
1370
|
CreationTime: Date | undefined;
|
|
1371
|
-
LastExecutionTime?: Date;
|
|
1372
|
-
LastUpdateTime?: Date;
|
|
1371
|
+
LastExecutionTime?: Date | undefined;
|
|
1372
|
+
LastUpdateTime?: Date | undefined;
|
|
1373
1373
|
RestoreTestingPlanArn: string | undefined;
|
|
1374
1374
|
RestoreTestingPlanName: string | undefined;
|
|
1375
1375
|
ScheduleExpression: string | undefined;
|
|
1376
|
-
ScheduleExpressionTimezone?: string;
|
|
1377
|
-
StartWindowHours?: number;
|
|
1376
|
+
ScheduleExpressionTimezone?: string | undefined;
|
|
1377
|
+
StartWindowHours?: number | undefined;
|
|
1378
1378
|
}
|
|
1379
1379
|
export interface ListRestoreTestingPlansOutput {
|
|
1380
|
-
NextToken?: string;
|
|
1380
|
+
NextToken?: string | undefined;
|
|
1381
1381
|
RestoreTestingPlans: RestoreTestingPlanForList[] | undefined;
|
|
1382
1382
|
}
|
|
1383
1383
|
export interface ListRestoreTestingSelectionsInput {
|
|
1384
|
-
MaxResults?: number;
|
|
1385
|
-
NextToken?: string;
|
|
1384
|
+
MaxResults?: number | undefined;
|
|
1385
|
+
NextToken?: string | undefined;
|
|
1386
1386
|
RestoreTestingPlanName: string | undefined;
|
|
1387
1387
|
}
|
|
1388
1388
|
export interface RestoreTestingSelectionForList {
|
|
@@ -1391,30 +1391,30 @@ export interface RestoreTestingSelectionForList {
|
|
|
1391
1391
|
ProtectedResourceType: string | undefined;
|
|
1392
1392
|
RestoreTestingPlanName: string | undefined;
|
|
1393
1393
|
RestoreTestingSelectionName: string | undefined;
|
|
1394
|
-
ValidationWindowHours?: number;
|
|
1394
|
+
ValidationWindowHours?: number | undefined;
|
|
1395
1395
|
}
|
|
1396
1396
|
export interface ListRestoreTestingSelectionsOutput {
|
|
1397
|
-
NextToken?: string;
|
|
1397
|
+
NextToken?: string | undefined;
|
|
1398
1398
|
RestoreTestingSelections: RestoreTestingSelectionForList[] | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
export interface ListTagsInput {
|
|
1401
1401
|
ResourceArn: string | undefined;
|
|
1402
|
-
NextToken?: string;
|
|
1403
|
-
MaxResults?: number;
|
|
1402
|
+
NextToken?: string | undefined;
|
|
1403
|
+
MaxResults?: number | undefined;
|
|
1404
1404
|
}
|
|
1405
1405
|
export interface ListTagsOutput {
|
|
1406
|
-
NextToken?: string;
|
|
1407
|
-
Tags?: Record<string, string
|
|
1406
|
+
NextToken?: string | undefined;
|
|
1407
|
+
Tags?: Record<string, string> | undefined;
|
|
1408
1408
|
}
|
|
1409
1409
|
export interface PutBackupVaultAccessPolicyInput {
|
|
1410
1410
|
BackupVaultName: string | undefined;
|
|
1411
|
-
Policy?: string;
|
|
1411
|
+
Policy?: string | undefined;
|
|
1412
1412
|
}
|
|
1413
1413
|
export interface PutBackupVaultLockConfigurationInput {
|
|
1414
1414
|
BackupVaultName: string | undefined;
|
|
1415
|
-
MinRetentionDays?: number;
|
|
1416
|
-
MaxRetentionDays?: number;
|
|
1417
|
-
ChangeableForDays?: number;
|
|
1415
|
+
MinRetentionDays?: number | undefined;
|
|
1416
|
+
MaxRetentionDays?: number | undefined;
|
|
1417
|
+
ChangeableForDays?: number | undefined;
|
|
1418
1418
|
}
|
|
1419
1419
|
export interface PutBackupVaultNotificationsInput {
|
|
1420
1420
|
BackupVaultName: string | undefined;
|
|
@@ -1424,55 +1424,55 @@ export interface PutBackupVaultNotificationsInput {
|
|
|
1424
1424
|
export interface PutRestoreValidationResultInput {
|
|
1425
1425
|
RestoreJobId: string | undefined;
|
|
1426
1426
|
ValidationStatus: RestoreValidationStatus | undefined;
|
|
1427
|
-
ValidationStatusMessage?: string;
|
|
1427
|
+
ValidationStatusMessage?: string | undefined;
|
|
1428
1428
|
}
|
|
1429
1429
|
export interface StartBackupJobInput {
|
|
1430
1430
|
BackupVaultName: string | undefined;
|
|
1431
1431
|
ResourceArn: string | undefined;
|
|
1432
1432
|
IamRoleArn: string | undefined;
|
|
1433
|
-
IdempotencyToken?: string;
|
|
1434
|
-
StartWindowMinutes?: number;
|
|
1435
|
-
CompleteWindowMinutes?: number;
|
|
1436
|
-
Lifecycle?: Lifecycle;
|
|
1437
|
-
RecoveryPointTags?: Record<string, string
|
|
1438
|
-
BackupOptions?: Record<string, string
|
|
1433
|
+
IdempotencyToken?: string | undefined;
|
|
1434
|
+
StartWindowMinutes?: number | undefined;
|
|
1435
|
+
CompleteWindowMinutes?: number | undefined;
|
|
1436
|
+
Lifecycle?: Lifecycle | undefined;
|
|
1437
|
+
RecoveryPointTags?: Record<string, string> | undefined;
|
|
1438
|
+
BackupOptions?: Record<string, string> | undefined;
|
|
1439
1439
|
}
|
|
1440
1440
|
export interface StartBackupJobOutput {
|
|
1441
|
-
BackupJobId?: string;
|
|
1442
|
-
RecoveryPointArn?: string;
|
|
1443
|
-
CreationDate?: Date;
|
|
1444
|
-
IsParent?: boolean;
|
|
1441
|
+
BackupJobId?: string | undefined;
|
|
1442
|
+
RecoveryPointArn?: string | undefined;
|
|
1443
|
+
CreationDate?: Date | undefined;
|
|
1444
|
+
IsParent?: boolean | undefined;
|
|
1445
1445
|
}
|
|
1446
1446
|
export interface StartCopyJobInput {
|
|
1447
1447
|
RecoveryPointArn: string | undefined;
|
|
1448
1448
|
SourceBackupVaultName: string | undefined;
|
|
1449
1449
|
DestinationBackupVaultArn: string | undefined;
|
|
1450
1450
|
IamRoleArn: string | undefined;
|
|
1451
|
-
IdempotencyToken?: string;
|
|
1452
|
-
Lifecycle?: Lifecycle;
|
|
1451
|
+
IdempotencyToken?: string | undefined;
|
|
1452
|
+
Lifecycle?: Lifecycle | undefined;
|
|
1453
1453
|
}
|
|
1454
1454
|
export interface StartCopyJobOutput {
|
|
1455
|
-
CopyJobId?: string;
|
|
1456
|
-
CreationDate?: Date;
|
|
1457
|
-
IsParent?: boolean;
|
|
1455
|
+
CopyJobId?: string | undefined;
|
|
1456
|
+
CreationDate?: Date | undefined;
|
|
1457
|
+
IsParent?: boolean | undefined;
|
|
1458
1458
|
}
|
|
1459
1459
|
export interface StartReportJobInput {
|
|
1460
1460
|
ReportPlanName: string | undefined;
|
|
1461
|
-
IdempotencyToken?: string;
|
|
1461
|
+
IdempotencyToken?: string | undefined;
|
|
1462
1462
|
}
|
|
1463
1463
|
export interface StartReportJobOutput {
|
|
1464
|
-
ReportJobId?: string;
|
|
1464
|
+
ReportJobId?: string | undefined;
|
|
1465
1465
|
}
|
|
1466
1466
|
export interface StartRestoreJobInput {
|
|
1467
1467
|
RecoveryPointArn: string | undefined;
|
|
1468
1468
|
Metadata: Record<string, string> | undefined;
|
|
1469
|
-
IamRoleArn?: string;
|
|
1470
|
-
IdempotencyToken?: string;
|
|
1471
|
-
ResourceType?: string;
|
|
1472
|
-
CopySourceTagsToRestoredResource?: boolean;
|
|
1469
|
+
IamRoleArn?: string | undefined;
|
|
1470
|
+
IdempotencyToken?: string | undefined;
|
|
1471
|
+
ResourceType?: string | undefined;
|
|
1472
|
+
CopySourceTagsToRestoredResource?: boolean | undefined;
|
|
1473
1473
|
}
|
|
1474
1474
|
export interface StartRestoreJobOutput {
|
|
1475
|
-
RestoreJobId?: string;
|
|
1475
|
+
RestoreJobId?: string | undefined;
|
|
1476
1476
|
}
|
|
1477
1477
|
export interface StopBackupJobInput {
|
|
1478
1478
|
BackupJobId: string | undefined;
|
|
@@ -1490,58 +1490,58 @@ export interface UpdateBackupPlanInput {
|
|
|
1490
1490
|
BackupPlan: BackupPlanInput | undefined;
|
|
1491
1491
|
}
|
|
1492
1492
|
export interface UpdateBackupPlanOutput {
|
|
1493
|
-
BackupPlanId?: string;
|
|
1494
|
-
BackupPlanArn?: string;
|
|
1495
|
-
CreationDate?: Date;
|
|
1496
|
-
VersionId?: string;
|
|
1497
|
-
AdvancedBackupSettings?: AdvancedBackupSetting[];
|
|
1493
|
+
BackupPlanId?: string | undefined;
|
|
1494
|
+
BackupPlanArn?: string | undefined;
|
|
1495
|
+
CreationDate?: Date | undefined;
|
|
1496
|
+
VersionId?: string | undefined;
|
|
1497
|
+
AdvancedBackupSettings?: AdvancedBackupSetting[] | undefined;
|
|
1498
1498
|
}
|
|
1499
1499
|
export interface UpdateFrameworkInput {
|
|
1500
1500
|
FrameworkName: string | undefined;
|
|
1501
|
-
FrameworkDescription?: string;
|
|
1502
|
-
FrameworkControls?: FrameworkControl[];
|
|
1503
|
-
IdempotencyToken?: string;
|
|
1501
|
+
FrameworkDescription?: string | undefined;
|
|
1502
|
+
FrameworkControls?: FrameworkControl[] | undefined;
|
|
1503
|
+
IdempotencyToken?: string | undefined;
|
|
1504
1504
|
}
|
|
1505
1505
|
export interface UpdateFrameworkOutput {
|
|
1506
|
-
FrameworkName?: string;
|
|
1507
|
-
FrameworkArn?: string;
|
|
1508
|
-
CreationTime?: Date;
|
|
1506
|
+
FrameworkName?: string | undefined;
|
|
1507
|
+
FrameworkArn?: string | undefined;
|
|
1508
|
+
CreationTime?: Date | undefined;
|
|
1509
1509
|
}
|
|
1510
1510
|
export interface UpdateGlobalSettingsInput {
|
|
1511
|
-
GlobalSettings?: Record<string, string
|
|
1511
|
+
GlobalSettings?: Record<string, string> | undefined;
|
|
1512
1512
|
}
|
|
1513
1513
|
export interface UpdateRecoveryPointLifecycleInput {
|
|
1514
1514
|
BackupVaultName: string | undefined;
|
|
1515
1515
|
RecoveryPointArn: string | undefined;
|
|
1516
|
-
Lifecycle?: Lifecycle;
|
|
1516
|
+
Lifecycle?: Lifecycle | undefined;
|
|
1517
1517
|
}
|
|
1518
1518
|
export interface UpdateRecoveryPointLifecycleOutput {
|
|
1519
|
-
BackupVaultArn?: string;
|
|
1520
|
-
RecoveryPointArn?: string;
|
|
1521
|
-
Lifecycle?: Lifecycle;
|
|
1522
|
-
CalculatedLifecycle?: CalculatedLifecycle;
|
|
1519
|
+
BackupVaultArn?: string | undefined;
|
|
1520
|
+
RecoveryPointArn?: string | undefined;
|
|
1521
|
+
Lifecycle?: Lifecycle | undefined;
|
|
1522
|
+
CalculatedLifecycle?: CalculatedLifecycle | undefined;
|
|
1523
1523
|
}
|
|
1524
1524
|
export interface UpdateRegionSettingsInput {
|
|
1525
|
-
ResourceTypeOptInPreference?: Record<string, boolean
|
|
1526
|
-
ResourceTypeManagementPreference?: Record<string, boolean
|
|
1525
|
+
ResourceTypeOptInPreference?: Record<string, boolean> | undefined;
|
|
1526
|
+
ResourceTypeManagementPreference?: Record<string, boolean> | undefined;
|
|
1527
1527
|
}
|
|
1528
1528
|
export interface UpdateReportPlanInput {
|
|
1529
1529
|
ReportPlanName: string | undefined;
|
|
1530
|
-
ReportPlanDescription?: string;
|
|
1531
|
-
ReportDeliveryChannel?: ReportDeliveryChannel;
|
|
1532
|
-
ReportSetting?: ReportSetting;
|
|
1533
|
-
IdempotencyToken?: string;
|
|
1530
|
+
ReportPlanDescription?: string | undefined;
|
|
1531
|
+
ReportDeliveryChannel?: ReportDeliveryChannel | undefined;
|
|
1532
|
+
ReportSetting?: ReportSetting | undefined;
|
|
1533
|
+
IdempotencyToken?: string | undefined;
|
|
1534
1534
|
}
|
|
1535
1535
|
export interface UpdateReportPlanOutput {
|
|
1536
|
-
ReportPlanName?: string;
|
|
1537
|
-
ReportPlanArn?: string;
|
|
1538
|
-
CreationTime?: Date;
|
|
1536
|
+
ReportPlanName?: string | undefined;
|
|
1537
|
+
ReportPlanArn?: string | undefined;
|
|
1538
|
+
CreationTime?: Date | undefined;
|
|
1539
1539
|
}
|
|
1540
1540
|
export interface RestoreTestingPlanForUpdate {
|
|
1541
|
-
RecoveryPointSelection?: RestoreTestingRecoveryPointSelection;
|
|
1542
|
-
ScheduleExpression?: string;
|
|
1543
|
-
ScheduleExpressionTimezone?: string;
|
|
1544
|
-
StartWindowHours?: number;
|
|
1541
|
+
RecoveryPointSelection?: RestoreTestingRecoveryPointSelection | undefined;
|
|
1542
|
+
ScheduleExpression?: string | undefined;
|
|
1543
|
+
ScheduleExpressionTimezone?: string | undefined;
|
|
1544
|
+
StartWindowHours?: number | undefined;
|
|
1545
1545
|
}
|
|
1546
1546
|
export interface UpdateRestoreTestingPlanInput {
|
|
1547
1547
|
RestoreTestingPlan: RestoreTestingPlanForUpdate | undefined;
|
|
@@ -1554,11 +1554,11 @@ export interface UpdateRestoreTestingPlanOutput {
|
|
|
1554
1554
|
UpdateTime: Date | undefined;
|
|
1555
1555
|
}
|
|
1556
1556
|
export interface RestoreTestingSelectionForUpdate {
|
|
1557
|
-
IamRoleArn?: string;
|
|
1558
|
-
ProtectedResourceArns?: string[];
|
|
1559
|
-
ProtectedResourceConditions?: ProtectedResourceConditions;
|
|
1560
|
-
RestoreMetadataOverrides?: Record<string, string
|
|
1561
|
-
ValidationWindowHours?: number;
|
|
1557
|
+
IamRoleArn?: string | undefined;
|
|
1558
|
+
ProtectedResourceArns?: string[] | undefined;
|
|
1559
|
+
ProtectedResourceConditions?: ProtectedResourceConditions | undefined;
|
|
1560
|
+
RestoreMetadataOverrides?: Record<string, string> | undefined;
|
|
1561
|
+
ValidationWindowHours?: number | undefined;
|
|
1562
1562
|
}
|
|
1563
1563
|
export interface UpdateRestoreTestingSelectionInput {
|
|
1564
1564
|
RestoreTestingPlanName: string | undefined;
|