@aws-sdk/client-dlm 3.169.0 → 3.170.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.
@@ -1,458 +1,485 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { DLMServiceException as __BaseException } from "./DLMServiceException";
3
-
4
- export interface EncryptionConfiguration {
5
-
6
- Encrypted: boolean | undefined;
7
-
8
- CmkArn?: string;
9
- }
10
- export declare enum RetentionIntervalUnitValues {
11
- DAYS = "DAYS",
12
- MONTHS = "MONTHS",
13
- WEEKS = "WEEKS",
14
- YEARS = "YEARS"
15
- }
16
-
17
- export interface CrossRegionCopyRetainRule {
18
-
19
- Interval?: number;
20
-
21
- IntervalUnit?: RetentionIntervalUnitValues | string;
22
- }
23
-
24
- export interface CrossRegionCopyAction {
25
-
26
- Target: string | undefined;
27
-
28
- EncryptionConfiguration: EncryptionConfiguration | undefined;
29
-
30
- RetainRule?: CrossRegionCopyRetainRule;
31
- }
32
-
33
- export interface Action {
34
-
35
- Name: string | undefined;
36
-
37
- CrossRegionCopy: CrossRegionCopyAction[] | undefined;
38
- }
39
- export declare enum EventTypeValues {
40
- SHARE_SNAPSHOT = "shareSnapshot"
41
- }
42
-
43
- export interface EventParameters {
44
-
45
- EventType: EventTypeValues | string | undefined;
46
-
47
- SnapshotOwner: string[] | undefined;
48
-
49
- DescriptionRegex: string | undefined;
50
- }
51
- export declare enum EventSourceValues {
52
- MANAGED_CWE = "MANAGED_CWE"
53
- }
54
-
55
- export interface EventSource {
56
-
57
- Type: EventSourceValues | string | undefined;
58
-
59
- Parameters?: EventParameters;
60
- }
61
-
62
- export interface Tag {
63
-
64
- Key: string | undefined;
65
-
66
- Value: string | undefined;
67
- }
68
-
69
- export interface _Parameters {
70
-
71
- ExcludeBootVolume?: boolean;
72
-
73
- NoReboot?: boolean;
74
-
75
- ExcludeDataVolumeTags?: Tag[];
76
- }
77
- export declare enum PolicyTypeValues {
78
- EBS_SNAPSHOT_MANAGEMENT = "EBS_SNAPSHOT_MANAGEMENT",
79
- EVENT_BASED_POLICY = "EVENT_BASED_POLICY",
80
- IMAGE_MANAGEMENT = "IMAGE_MANAGEMENT"
81
- }
82
- export declare enum ResourceLocationValues {
83
- CLOUD = "CLOUD",
84
- OUTPOST = "OUTPOST"
85
- }
86
- export declare enum ResourceTypeValues {
87
- INSTANCE = "INSTANCE",
88
- VOLUME = "VOLUME"
89
- }
90
- export declare enum IntervalUnitValues {
91
- HOURS = "HOURS"
92
- }
93
- export declare enum LocationValues {
94
- CLOUD = "CLOUD",
95
- OUTPOST_LOCAL = "OUTPOST_LOCAL"
96
- }
97
-
98
- export interface CreateRule {
99
-
100
- Location?: LocationValues | string;
101
-
102
- Interval?: number;
103
-
104
- IntervalUnit?: IntervalUnitValues | string;
105
-
106
- Times?: string[];
107
-
108
- CronExpression?: string;
109
- }
110
-
111
- export interface CrossRegionCopyDeprecateRule {
112
-
113
- Interval?: number;
114
-
115
- IntervalUnit?: RetentionIntervalUnitValues | string;
116
- }
117
-
118
- export interface CrossRegionCopyRule {
119
-
120
- TargetRegion?: string;
121
-
122
- Target?: string;
123
-
124
- Encrypted: boolean | undefined;
125
-
126
- CmkArn?: string;
127
-
128
- CopyTags?: boolean;
129
-
130
- RetainRule?: CrossRegionCopyRetainRule;
131
-
132
- DeprecateRule?: CrossRegionCopyDeprecateRule;
133
- }
134
-
135
- export interface DeprecateRule {
136
-
137
- Count?: number;
138
-
139
- Interval?: number;
140
-
141
- IntervalUnit?: RetentionIntervalUnitValues | string;
142
- }
143
-
144
- export interface FastRestoreRule {
145
-
146
- Count?: number;
147
-
148
- Interval?: number;
149
-
150
- IntervalUnit?: RetentionIntervalUnitValues | string;
151
-
152
- AvailabilityZones: string[] | undefined;
153
- }
154
-
155
- export interface RetainRule {
156
-
157
- Count?: number;
158
-
159
- Interval?: number;
160
-
161
- IntervalUnit?: RetentionIntervalUnitValues | string;
162
- }
163
-
164
- export interface ShareRule {
165
-
166
- TargetAccounts: string[] | undefined;
167
-
168
- UnshareInterval?: number;
169
-
170
- UnshareIntervalUnit?: RetentionIntervalUnitValues | string;
171
- }
172
-
173
- export interface Schedule {
174
-
175
- Name?: string;
176
-
177
- CopyTags?: boolean;
178
-
179
- TagsToAdd?: Tag[];
180
-
181
- VariableTags?: Tag[];
182
-
183
- CreateRule?: CreateRule;
184
-
185
- RetainRule?: RetainRule;
186
-
187
- FastRestoreRule?: FastRestoreRule;
188
-
189
- CrossRegionCopyRules?: CrossRegionCopyRule[];
190
-
191
- ShareRules?: ShareRule[];
192
-
193
- DeprecateRule?: DeprecateRule;
194
- }
195
-
196
- export interface PolicyDetails {
197
-
198
- PolicyType?: PolicyTypeValues | string;
199
-
200
- ResourceTypes?: (ResourceTypeValues | string)[];
201
-
202
- ResourceLocations?: (ResourceLocationValues | string)[];
203
-
204
- TargetTags?: Tag[];
205
-
206
- Schedules?: Schedule[];
207
-
208
- Parameters?: _Parameters;
209
-
210
- EventSource?: EventSource;
211
-
212
- Actions?: Action[];
213
- }
214
- export declare enum SettablePolicyStateValues {
215
- DISABLED = "DISABLED",
216
- ENABLED = "ENABLED"
217
- }
218
- export interface CreateLifecyclePolicyRequest {
219
-
220
- ExecutionRoleArn: string | undefined;
221
-
222
- Description: string | undefined;
223
-
224
- State: SettablePolicyStateValues | string | undefined;
225
-
226
- PolicyDetails: PolicyDetails | undefined;
227
-
228
- Tags?: Record<string, string>;
229
- }
230
- export interface CreateLifecyclePolicyResponse {
231
-
232
- PolicyId?: string;
233
- }
234
-
235
- export declare class InternalServerException extends __BaseException {
236
- readonly name: "InternalServerException";
237
- readonly $fault: "server";
238
- Message?: string;
239
- Code?: string;
240
-
241
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
242
- }
243
-
244
- export declare class InvalidRequestException extends __BaseException {
245
- readonly name: "InvalidRequestException";
246
- readonly $fault: "client";
247
- Message?: string;
248
- Code?: string;
249
-
250
- RequiredParameters?: string[];
251
-
252
- MutuallyExclusiveParameters?: string[];
253
-
254
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
255
- }
256
-
257
- export declare class LimitExceededException extends __BaseException {
258
- readonly name: "LimitExceededException";
259
- readonly $fault: "client";
260
- Message?: string;
261
- Code?: string;
262
-
263
- ResourceType?: string;
264
-
265
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
266
- }
267
- export interface DeleteLifecyclePolicyRequest {
268
-
269
- PolicyId: string | undefined;
270
- }
271
- export interface DeleteLifecyclePolicyResponse {
272
- }
273
-
274
- export declare class ResourceNotFoundException extends __BaseException {
275
- readonly name: "ResourceNotFoundException";
276
- readonly $fault: "client";
277
- Message?: string;
278
- Code?: string;
279
-
280
- ResourceType?: string;
281
-
282
- ResourceIds?: string[];
283
-
284
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
285
- }
286
- export declare enum GettablePolicyStateValues {
287
- DISABLED = "DISABLED",
288
- ENABLED = "ENABLED",
289
- ERROR = "ERROR"
290
- }
291
- export interface GetLifecyclePoliciesRequest {
292
-
293
- PolicyIds?: string[];
294
-
295
- State?: GettablePolicyStateValues | string;
296
-
297
- ResourceTypes?: (ResourceTypeValues | string)[];
298
-
299
- TargetTags?: string[];
300
-
301
- TagsToAdd?: string[];
302
- }
303
-
304
- export interface LifecyclePolicySummary {
305
-
306
- PolicyId?: string;
307
-
308
- Description?: string;
309
-
310
- State?: GettablePolicyStateValues | string;
311
-
312
- Tags?: Record<string, string>;
313
-
314
- PolicyType?: PolicyTypeValues | string;
315
- }
316
- export interface GetLifecyclePoliciesResponse {
317
-
318
- Policies?: LifecyclePolicySummary[];
319
- }
320
- export interface GetLifecyclePolicyRequest {
321
-
322
- PolicyId: string | undefined;
323
- }
324
-
325
- export interface LifecyclePolicy {
326
-
327
- PolicyId?: string;
328
-
329
- Description?: string;
330
-
331
- State?: GettablePolicyStateValues | string;
332
-
333
- StatusMessage?: string;
334
-
335
- ExecutionRoleArn?: string;
336
-
337
- DateCreated?: Date;
338
-
339
- DateModified?: Date;
340
-
341
- PolicyDetails?: PolicyDetails;
342
-
343
- Tags?: Record<string, string>;
344
-
345
- PolicyArn?: string;
346
- }
347
- export interface GetLifecyclePolicyResponse {
348
-
349
- Policy?: LifecyclePolicy;
350
- }
351
- export interface ListTagsForResourceRequest {
352
-
353
- ResourceArn: string | undefined;
354
- }
355
- export interface ListTagsForResourceResponse {
356
-
357
- Tags?: Record<string, string>;
358
- }
359
- export interface TagResourceRequest {
360
-
361
- ResourceArn: string | undefined;
362
-
363
- Tags: Record<string, string> | undefined;
364
- }
365
- export interface TagResourceResponse {
366
- }
367
- export interface UntagResourceRequest {
368
-
369
- ResourceArn: string | undefined;
370
-
371
- TagKeys: string[] | undefined;
372
- }
373
- export interface UntagResourceResponse {
374
- }
375
- export interface UpdateLifecyclePolicyRequest {
376
-
377
- PolicyId: string | undefined;
378
-
379
- ExecutionRoleArn?: string;
380
-
381
- State?: SettablePolicyStateValues | string;
382
-
383
- Description?: string;
384
-
385
- PolicyDetails?: PolicyDetails;
386
- }
387
- export interface UpdateLifecyclePolicyResponse {
388
- }
389
-
390
- export declare const EncryptionConfigurationFilterSensitiveLog: (obj: EncryptionConfiguration) => any;
391
-
392
- export declare const CrossRegionCopyRetainRuleFilterSensitiveLog: (obj: CrossRegionCopyRetainRule) => any;
393
-
394
- export declare const CrossRegionCopyActionFilterSensitiveLog: (obj: CrossRegionCopyAction) => any;
395
-
396
- export declare const ActionFilterSensitiveLog: (obj: Action) => any;
397
-
398
- export declare const EventParametersFilterSensitiveLog: (obj: EventParameters) => any;
399
-
400
- export declare const EventSourceFilterSensitiveLog: (obj: EventSource) => any;
401
-
402
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
403
-
404
- export declare const _ParametersFilterSensitiveLog: (obj: _Parameters) => any;
405
-
406
- export declare const CreateRuleFilterSensitiveLog: (obj: CreateRule) => any;
407
-
408
- export declare const CrossRegionCopyDeprecateRuleFilterSensitiveLog: (obj: CrossRegionCopyDeprecateRule) => any;
409
-
410
- export declare const CrossRegionCopyRuleFilterSensitiveLog: (obj: CrossRegionCopyRule) => any;
411
-
412
- export declare const DeprecateRuleFilterSensitiveLog: (obj: DeprecateRule) => any;
413
-
414
- export declare const FastRestoreRuleFilterSensitiveLog: (obj: FastRestoreRule) => any;
415
-
416
- export declare const RetainRuleFilterSensitiveLog: (obj: RetainRule) => any;
417
-
418
- export declare const ShareRuleFilterSensitiveLog: (obj: ShareRule) => any;
419
-
420
- export declare const ScheduleFilterSensitiveLog: (obj: Schedule) => any;
421
-
422
- export declare const PolicyDetailsFilterSensitiveLog: (obj: PolicyDetails) => any;
423
-
424
- export declare const CreateLifecyclePolicyRequestFilterSensitiveLog: (obj: CreateLifecyclePolicyRequest) => any;
425
-
426
- export declare const CreateLifecyclePolicyResponseFilterSensitiveLog: (obj: CreateLifecyclePolicyResponse) => any;
427
-
428
- export declare const DeleteLifecyclePolicyRequestFilterSensitiveLog: (obj: DeleteLifecyclePolicyRequest) => any;
429
-
430
- export declare const DeleteLifecyclePolicyResponseFilterSensitiveLog: (obj: DeleteLifecyclePolicyResponse) => any;
431
-
432
- export declare const GetLifecyclePoliciesRequestFilterSensitiveLog: (obj: GetLifecyclePoliciesRequest) => any;
433
-
434
- export declare const LifecyclePolicySummaryFilterSensitiveLog: (obj: LifecyclePolicySummary) => any;
435
-
436
- export declare const GetLifecyclePoliciesResponseFilterSensitiveLog: (obj: GetLifecyclePoliciesResponse) => any;
437
-
438
- export declare const GetLifecyclePolicyRequestFilterSensitiveLog: (obj: GetLifecyclePolicyRequest) => any;
439
-
440
- export declare const LifecyclePolicyFilterSensitiveLog: (obj: LifecyclePolicy) => any;
441
-
442
- export declare const GetLifecyclePolicyResponseFilterSensitiveLog: (obj: GetLifecyclePolicyResponse) => any;
443
-
444
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
445
-
446
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
447
-
448
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
449
-
450
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
451
-
452
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
453
-
454
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
455
-
456
- export declare const UpdateLifecyclePolicyRequestFilterSensitiveLog: (obj: UpdateLifecyclePolicyRequest) => any;
457
-
458
- export declare const UpdateLifecyclePolicyResponseFilterSensitiveLog: (obj: UpdateLifecyclePolicyResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DLMServiceException as __BaseException } from "./DLMServiceException";
3
+
4
+ export interface EncryptionConfiguration {
5
+ Encrypted: boolean | undefined;
6
+
7
+ CmkArn?: string;
8
+ }
9
+ export declare enum RetentionIntervalUnitValues {
10
+ DAYS = "DAYS",
11
+ MONTHS = "MONTHS",
12
+ WEEKS = "WEEKS",
13
+ YEARS = "YEARS",
14
+ }
15
+
16
+ export interface CrossRegionCopyRetainRule {
17
+ Interval?: number;
18
+
19
+ IntervalUnit?: RetentionIntervalUnitValues | string;
20
+ }
21
+
22
+ export interface CrossRegionCopyAction {
23
+ Target: string | undefined;
24
+
25
+ EncryptionConfiguration: EncryptionConfiguration | undefined;
26
+
27
+ RetainRule?: CrossRegionCopyRetainRule;
28
+ }
29
+
30
+ export interface Action {
31
+ Name: string | undefined;
32
+
33
+ CrossRegionCopy: CrossRegionCopyAction[] | undefined;
34
+ }
35
+ export declare enum EventTypeValues {
36
+ SHARE_SNAPSHOT = "shareSnapshot",
37
+ }
38
+
39
+ export interface EventParameters {
40
+ EventType: EventTypeValues | string | undefined;
41
+
42
+ SnapshotOwner: string[] | undefined;
43
+
44
+ DescriptionRegex: string | undefined;
45
+ }
46
+ export declare enum EventSourceValues {
47
+ MANAGED_CWE = "MANAGED_CWE",
48
+ }
49
+
50
+ export interface EventSource {
51
+ Type: EventSourceValues | string | undefined;
52
+
53
+ Parameters?: EventParameters;
54
+ }
55
+
56
+ export interface Tag {
57
+ Key: string | undefined;
58
+
59
+ Value: string | undefined;
60
+ }
61
+
62
+ export interface _Parameters {
63
+ ExcludeBootVolume?: boolean;
64
+
65
+ NoReboot?: boolean;
66
+
67
+ ExcludeDataVolumeTags?: Tag[];
68
+ }
69
+ export declare enum PolicyTypeValues {
70
+ EBS_SNAPSHOT_MANAGEMENT = "EBS_SNAPSHOT_MANAGEMENT",
71
+ EVENT_BASED_POLICY = "EVENT_BASED_POLICY",
72
+ IMAGE_MANAGEMENT = "IMAGE_MANAGEMENT",
73
+ }
74
+ export declare enum ResourceLocationValues {
75
+ CLOUD = "CLOUD",
76
+ OUTPOST = "OUTPOST",
77
+ }
78
+ export declare enum ResourceTypeValues {
79
+ INSTANCE = "INSTANCE",
80
+ VOLUME = "VOLUME",
81
+ }
82
+ export declare enum IntervalUnitValues {
83
+ HOURS = "HOURS",
84
+ }
85
+ export declare enum LocationValues {
86
+ CLOUD = "CLOUD",
87
+ OUTPOST_LOCAL = "OUTPOST_LOCAL",
88
+ }
89
+
90
+ export interface CreateRule {
91
+ Location?: LocationValues | string;
92
+
93
+ Interval?: number;
94
+
95
+ IntervalUnit?: IntervalUnitValues | string;
96
+
97
+ Times?: string[];
98
+
99
+ CronExpression?: string;
100
+ }
101
+
102
+ export interface CrossRegionCopyDeprecateRule {
103
+ Interval?: number;
104
+
105
+ IntervalUnit?: RetentionIntervalUnitValues | string;
106
+ }
107
+
108
+ export interface CrossRegionCopyRule {
109
+ TargetRegion?: string;
110
+
111
+ Target?: string;
112
+
113
+ Encrypted: boolean | undefined;
114
+
115
+ CmkArn?: string;
116
+
117
+ CopyTags?: boolean;
118
+
119
+ RetainRule?: CrossRegionCopyRetainRule;
120
+
121
+ DeprecateRule?: CrossRegionCopyDeprecateRule;
122
+ }
123
+
124
+ export interface DeprecateRule {
125
+ Count?: number;
126
+
127
+ Interval?: number;
128
+
129
+ IntervalUnit?: RetentionIntervalUnitValues | string;
130
+ }
131
+
132
+ export interface FastRestoreRule {
133
+ Count?: number;
134
+
135
+ Interval?: number;
136
+
137
+ IntervalUnit?: RetentionIntervalUnitValues | string;
138
+
139
+ AvailabilityZones: string[] | undefined;
140
+ }
141
+
142
+ export interface RetainRule {
143
+ Count?: number;
144
+
145
+ Interval?: number;
146
+
147
+ IntervalUnit?: RetentionIntervalUnitValues | string;
148
+ }
149
+
150
+ export interface ShareRule {
151
+ TargetAccounts: string[] | undefined;
152
+
153
+ UnshareInterval?: number;
154
+
155
+ UnshareIntervalUnit?: RetentionIntervalUnitValues | string;
156
+ }
157
+
158
+ export interface Schedule {
159
+ Name?: string;
160
+
161
+ CopyTags?: boolean;
162
+
163
+ TagsToAdd?: Tag[];
164
+
165
+ VariableTags?: Tag[];
166
+
167
+ CreateRule?: CreateRule;
168
+
169
+ RetainRule?: RetainRule;
170
+
171
+ FastRestoreRule?: FastRestoreRule;
172
+
173
+ CrossRegionCopyRules?: CrossRegionCopyRule[];
174
+
175
+ ShareRules?: ShareRule[];
176
+
177
+ DeprecateRule?: DeprecateRule;
178
+ }
179
+
180
+ export interface PolicyDetails {
181
+ PolicyType?: PolicyTypeValues | string;
182
+
183
+ ResourceTypes?: (ResourceTypeValues | string)[];
184
+
185
+ ResourceLocations?: (ResourceLocationValues | string)[];
186
+
187
+ TargetTags?: Tag[];
188
+
189
+ Schedules?: Schedule[];
190
+
191
+ Parameters?: _Parameters;
192
+
193
+ EventSource?: EventSource;
194
+
195
+ Actions?: Action[];
196
+ }
197
+ export declare enum SettablePolicyStateValues {
198
+ DISABLED = "DISABLED",
199
+ ENABLED = "ENABLED",
200
+ }
201
+ export interface CreateLifecyclePolicyRequest {
202
+ ExecutionRoleArn: string | undefined;
203
+
204
+ Description: string | undefined;
205
+
206
+ State: SettablePolicyStateValues | string | undefined;
207
+
208
+ PolicyDetails: PolicyDetails | undefined;
209
+
210
+ Tags?: Record<string, string>;
211
+ }
212
+ export interface CreateLifecyclePolicyResponse {
213
+ PolicyId?: string;
214
+ }
215
+
216
+ export declare class InternalServerException extends __BaseException {
217
+ readonly name: "InternalServerException";
218
+ readonly $fault: "server";
219
+ Message?: string;
220
+ Code?: string;
221
+
222
+ constructor(
223
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
224
+ );
225
+ }
226
+
227
+ export declare class InvalidRequestException extends __BaseException {
228
+ readonly name: "InvalidRequestException";
229
+ readonly $fault: "client";
230
+ Message?: string;
231
+ Code?: string;
232
+
233
+ RequiredParameters?: string[];
234
+
235
+ MutuallyExclusiveParameters?: string[];
236
+
237
+ constructor(
238
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
239
+ );
240
+ }
241
+
242
+ export declare class LimitExceededException extends __BaseException {
243
+ readonly name: "LimitExceededException";
244
+ readonly $fault: "client";
245
+ Message?: string;
246
+ Code?: string;
247
+
248
+ ResourceType?: string;
249
+
250
+ constructor(
251
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
252
+ );
253
+ }
254
+ export interface DeleteLifecyclePolicyRequest {
255
+ PolicyId: string | undefined;
256
+ }
257
+ export interface DeleteLifecyclePolicyResponse {}
258
+
259
+ export declare class ResourceNotFoundException extends __BaseException {
260
+ readonly name: "ResourceNotFoundException";
261
+ readonly $fault: "client";
262
+ Message?: string;
263
+ Code?: string;
264
+
265
+ ResourceType?: string;
266
+
267
+ ResourceIds?: string[];
268
+
269
+ constructor(
270
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
271
+ );
272
+ }
273
+ export declare enum GettablePolicyStateValues {
274
+ DISABLED = "DISABLED",
275
+ ENABLED = "ENABLED",
276
+ ERROR = "ERROR",
277
+ }
278
+ export interface GetLifecyclePoliciesRequest {
279
+ PolicyIds?: string[];
280
+
281
+ State?: GettablePolicyStateValues | string;
282
+
283
+ ResourceTypes?: (ResourceTypeValues | string)[];
284
+
285
+ TargetTags?: string[];
286
+
287
+ TagsToAdd?: string[];
288
+ }
289
+
290
+ export interface LifecyclePolicySummary {
291
+ PolicyId?: string;
292
+
293
+ Description?: string;
294
+
295
+ State?: GettablePolicyStateValues | string;
296
+
297
+ Tags?: Record<string, string>;
298
+
299
+ PolicyType?: PolicyTypeValues | string;
300
+ }
301
+ export interface GetLifecyclePoliciesResponse {
302
+ Policies?: LifecyclePolicySummary[];
303
+ }
304
+ export interface GetLifecyclePolicyRequest {
305
+ PolicyId: string | undefined;
306
+ }
307
+
308
+ export interface LifecyclePolicy {
309
+ PolicyId?: string;
310
+
311
+ Description?: string;
312
+
313
+ State?: GettablePolicyStateValues | string;
314
+
315
+ StatusMessage?: string;
316
+
317
+ ExecutionRoleArn?: string;
318
+
319
+ DateCreated?: Date;
320
+
321
+ DateModified?: Date;
322
+
323
+ PolicyDetails?: PolicyDetails;
324
+
325
+ Tags?: Record<string, string>;
326
+
327
+ PolicyArn?: string;
328
+ }
329
+ export interface GetLifecyclePolicyResponse {
330
+ Policy?: LifecyclePolicy;
331
+ }
332
+ export interface ListTagsForResourceRequest {
333
+ ResourceArn: string | undefined;
334
+ }
335
+ export interface ListTagsForResourceResponse {
336
+ Tags?: Record<string, string>;
337
+ }
338
+ export interface TagResourceRequest {
339
+ ResourceArn: string | undefined;
340
+
341
+ Tags: Record<string, string> | undefined;
342
+ }
343
+ export interface TagResourceResponse {}
344
+ export interface UntagResourceRequest {
345
+ ResourceArn: string | undefined;
346
+
347
+ TagKeys: string[] | undefined;
348
+ }
349
+ export interface UntagResourceResponse {}
350
+ export interface UpdateLifecyclePolicyRequest {
351
+ PolicyId: string | undefined;
352
+
353
+ ExecutionRoleArn?: string;
354
+
355
+ State?: SettablePolicyStateValues | string;
356
+
357
+ Description?: string;
358
+
359
+ PolicyDetails?: PolicyDetails;
360
+ }
361
+ export interface UpdateLifecyclePolicyResponse {}
362
+
363
+ export declare const EncryptionConfigurationFilterSensitiveLog: (
364
+ obj: EncryptionConfiguration
365
+ ) => any;
366
+
367
+ export declare const CrossRegionCopyRetainRuleFilterSensitiveLog: (
368
+ obj: CrossRegionCopyRetainRule
369
+ ) => any;
370
+
371
+ export declare const CrossRegionCopyActionFilterSensitiveLog: (
372
+ obj: CrossRegionCopyAction
373
+ ) => any;
374
+
375
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
376
+
377
+ export declare const EventParametersFilterSensitiveLog: (
378
+ obj: EventParameters
379
+ ) => any;
380
+
381
+ export declare const EventSourceFilterSensitiveLog: (obj: EventSource) => any;
382
+
383
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
384
+
385
+ export declare const _ParametersFilterSensitiveLog: (obj: _Parameters) => any;
386
+
387
+ export declare const CreateRuleFilterSensitiveLog: (obj: CreateRule) => any;
388
+
389
+ export declare const CrossRegionCopyDeprecateRuleFilterSensitiveLog: (
390
+ obj: CrossRegionCopyDeprecateRule
391
+ ) => any;
392
+
393
+ export declare const CrossRegionCopyRuleFilterSensitiveLog: (
394
+ obj: CrossRegionCopyRule
395
+ ) => any;
396
+
397
+ export declare const DeprecateRuleFilterSensitiveLog: (
398
+ obj: DeprecateRule
399
+ ) => any;
400
+
401
+ export declare const FastRestoreRuleFilterSensitiveLog: (
402
+ obj: FastRestoreRule
403
+ ) => any;
404
+
405
+ export declare const RetainRuleFilterSensitiveLog: (obj: RetainRule) => any;
406
+
407
+ export declare const ShareRuleFilterSensitiveLog: (obj: ShareRule) => any;
408
+
409
+ export declare const ScheduleFilterSensitiveLog: (obj: Schedule) => any;
410
+
411
+ export declare const PolicyDetailsFilterSensitiveLog: (
412
+ obj: PolicyDetails
413
+ ) => any;
414
+
415
+ export declare const CreateLifecyclePolicyRequestFilterSensitiveLog: (
416
+ obj: CreateLifecyclePolicyRequest
417
+ ) => any;
418
+
419
+ export declare const CreateLifecyclePolicyResponseFilterSensitiveLog: (
420
+ obj: CreateLifecyclePolicyResponse
421
+ ) => any;
422
+
423
+ export declare const DeleteLifecyclePolicyRequestFilterSensitiveLog: (
424
+ obj: DeleteLifecyclePolicyRequest
425
+ ) => any;
426
+
427
+ export declare const DeleteLifecyclePolicyResponseFilterSensitiveLog: (
428
+ obj: DeleteLifecyclePolicyResponse
429
+ ) => any;
430
+
431
+ export declare const GetLifecyclePoliciesRequestFilterSensitiveLog: (
432
+ obj: GetLifecyclePoliciesRequest
433
+ ) => any;
434
+
435
+ export declare const LifecyclePolicySummaryFilterSensitiveLog: (
436
+ obj: LifecyclePolicySummary
437
+ ) => any;
438
+
439
+ export declare const GetLifecyclePoliciesResponseFilterSensitiveLog: (
440
+ obj: GetLifecyclePoliciesResponse
441
+ ) => any;
442
+
443
+ export declare const GetLifecyclePolicyRequestFilterSensitiveLog: (
444
+ obj: GetLifecyclePolicyRequest
445
+ ) => any;
446
+
447
+ export declare const LifecyclePolicyFilterSensitiveLog: (
448
+ obj: LifecyclePolicy
449
+ ) => any;
450
+
451
+ export declare const GetLifecyclePolicyResponseFilterSensitiveLog: (
452
+ obj: GetLifecyclePolicyResponse
453
+ ) => any;
454
+
455
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
456
+ obj: ListTagsForResourceRequest
457
+ ) => any;
458
+
459
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
460
+ obj: ListTagsForResourceResponse
461
+ ) => any;
462
+
463
+ export declare const TagResourceRequestFilterSensitiveLog: (
464
+ obj: TagResourceRequest
465
+ ) => any;
466
+
467
+ export declare const TagResourceResponseFilterSensitiveLog: (
468
+ obj: TagResourceResponse
469
+ ) => any;
470
+
471
+ export declare const UntagResourceRequestFilterSensitiveLog: (
472
+ obj: UntagResourceRequest
473
+ ) => any;
474
+
475
+ export declare const UntagResourceResponseFilterSensitiveLog: (
476
+ obj: UntagResourceResponse
477
+ ) => any;
478
+
479
+ export declare const UpdateLifecyclePolicyRequestFilterSensitiveLog: (
480
+ obj: UpdateLifecyclePolicyRequest
481
+ ) => any;
482
+
483
+ export declare const UpdateLifecyclePolicyResponseFilterSensitiveLog: (
484
+ obj: UpdateLifecyclePolicyResponse
485
+ ) => any;