@aws-sdk/client-dlm 3.169.0 → 3.171.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,344 @@
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
+ export interface EncryptionConfiguration {
4
+ Encrypted: boolean | undefined;
5
+ CmkArn?: string;
6
+ }
7
+ export declare enum RetentionIntervalUnitValues {
8
+ DAYS = "DAYS",
9
+ MONTHS = "MONTHS",
10
+ WEEKS = "WEEKS",
11
+ YEARS = "YEARS",
12
+ }
13
+ export interface CrossRegionCopyRetainRule {
14
+ Interval?: number;
15
+ IntervalUnit?: RetentionIntervalUnitValues | string;
16
+ }
17
+ export interface CrossRegionCopyAction {
18
+ Target: string | undefined;
19
+ EncryptionConfiguration: EncryptionConfiguration | undefined;
20
+ RetainRule?: CrossRegionCopyRetainRule;
21
+ }
22
+ export interface Action {
23
+ Name: string | undefined;
24
+ CrossRegionCopy: CrossRegionCopyAction[] | undefined;
25
+ }
26
+ export declare enum EventTypeValues {
27
+ SHARE_SNAPSHOT = "shareSnapshot",
28
+ }
29
+ export interface EventParameters {
30
+ EventType: EventTypeValues | string | undefined;
31
+ SnapshotOwner: string[] | undefined;
32
+ DescriptionRegex: string | undefined;
33
+ }
34
+ export declare enum EventSourceValues {
35
+ MANAGED_CWE = "MANAGED_CWE",
36
+ }
37
+ export interface EventSource {
38
+ Type: EventSourceValues | string | undefined;
39
+ Parameters?: EventParameters;
40
+ }
41
+ export interface Tag {
42
+ Key: string | undefined;
43
+ Value: string | undefined;
44
+ }
45
+ export interface _Parameters {
46
+ ExcludeBootVolume?: boolean;
47
+ NoReboot?: boolean;
48
+ ExcludeDataVolumeTags?: Tag[];
49
+ }
50
+ export declare enum PolicyTypeValues {
51
+ EBS_SNAPSHOT_MANAGEMENT = "EBS_SNAPSHOT_MANAGEMENT",
52
+ EVENT_BASED_POLICY = "EVENT_BASED_POLICY",
53
+ IMAGE_MANAGEMENT = "IMAGE_MANAGEMENT",
54
+ }
55
+ export declare enum ResourceLocationValues {
56
+ CLOUD = "CLOUD",
57
+ OUTPOST = "OUTPOST",
58
+ }
59
+ export declare enum ResourceTypeValues {
60
+ INSTANCE = "INSTANCE",
61
+ VOLUME = "VOLUME",
62
+ }
63
+ export declare enum IntervalUnitValues {
64
+ HOURS = "HOURS",
65
+ }
66
+ export declare enum LocationValues {
67
+ CLOUD = "CLOUD",
68
+ OUTPOST_LOCAL = "OUTPOST_LOCAL",
69
+ }
70
+ export interface CreateRule {
71
+ Location?: LocationValues | string;
72
+ Interval?: number;
73
+ IntervalUnit?: IntervalUnitValues | string;
74
+ Times?: string[];
75
+ CronExpression?: string;
76
+ }
77
+ export interface CrossRegionCopyDeprecateRule {
78
+ Interval?: number;
79
+ IntervalUnit?: RetentionIntervalUnitValues | string;
80
+ }
81
+ export interface CrossRegionCopyRule {
82
+ TargetRegion?: string;
83
+ Target?: string;
84
+ Encrypted: boolean | undefined;
85
+ CmkArn?: string;
86
+ CopyTags?: boolean;
87
+ RetainRule?: CrossRegionCopyRetainRule;
88
+ DeprecateRule?: CrossRegionCopyDeprecateRule;
89
+ }
90
+ export interface DeprecateRule {
91
+ Count?: number;
92
+ Interval?: number;
93
+ IntervalUnit?: RetentionIntervalUnitValues | string;
94
+ }
95
+ export interface FastRestoreRule {
96
+ Count?: number;
97
+ Interval?: number;
98
+ IntervalUnit?: RetentionIntervalUnitValues | string;
99
+ AvailabilityZones: string[] | undefined;
100
+ }
101
+ export interface RetainRule {
102
+ Count?: number;
103
+ Interval?: number;
104
+ IntervalUnit?: RetentionIntervalUnitValues | string;
105
+ }
106
+ export interface ShareRule {
107
+ TargetAccounts: string[] | undefined;
108
+ UnshareInterval?: number;
109
+ UnshareIntervalUnit?: RetentionIntervalUnitValues | string;
110
+ }
111
+ export interface Schedule {
112
+ Name?: string;
113
+ CopyTags?: boolean;
114
+ TagsToAdd?: Tag[];
115
+ VariableTags?: Tag[];
116
+ CreateRule?: CreateRule;
117
+ RetainRule?: RetainRule;
118
+ FastRestoreRule?: FastRestoreRule;
119
+ CrossRegionCopyRules?: CrossRegionCopyRule[];
120
+ ShareRules?: ShareRule[];
121
+ DeprecateRule?: DeprecateRule;
122
+ }
123
+ export interface PolicyDetails {
124
+ PolicyType?: PolicyTypeValues | string;
125
+ ResourceTypes?: (ResourceTypeValues | string)[];
126
+ ResourceLocations?: (ResourceLocationValues | string)[];
127
+ TargetTags?: Tag[];
128
+ Schedules?: Schedule[];
129
+ Parameters?: _Parameters;
130
+ EventSource?: EventSource;
131
+ Actions?: Action[];
132
+ }
133
+ export declare enum SettablePolicyStateValues {
134
+ DISABLED = "DISABLED",
135
+ ENABLED = "ENABLED",
136
+ }
137
+ export interface CreateLifecyclePolicyRequest {
138
+ ExecutionRoleArn: string | undefined;
139
+ Description: string | undefined;
140
+ State: SettablePolicyStateValues | string | undefined;
141
+ PolicyDetails: PolicyDetails | undefined;
142
+ Tags?: Record<string, string>;
143
+ }
144
+ export interface CreateLifecyclePolicyResponse {
145
+ PolicyId?: string;
146
+ }
147
+ export declare class InternalServerException extends __BaseException {
148
+ readonly name: "InternalServerException";
149
+ readonly $fault: "server";
150
+ Message?: string;
151
+ Code?: string;
152
+ constructor(
153
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
154
+ );
155
+ }
156
+ export declare class InvalidRequestException extends __BaseException {
157
+ readonly name: "InvalidRequestException";
158
+ readonly $fault: "client";
159
+ Message?: string;
160
+ Code?: string;
161
+ RequiredParameters?: string[];
162
+ MutuallyExclusiveParameters?: string[];
163
+ constructor(
164
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
165
+ );
166
+ }
167
+ export declare class LimitExceededException extends __BaseException {
168
+ readonly name: "LimitExceededException";
169
+ readonly $fault: "client";
170
+ Message?: string;
171
+ Code?: string;
172
+ ResourceType?: string;
173
+ constructor(
174
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
175
+ );
176
+ }
177
+ export interface DeleteLifecyclePolicyRequest {
178
+ PolicyId: string | undefined;
179
+ }
180
+ export interface DeleteLifecyclePolicyResponse {}
181
+ export declare class ResourceNotFoundException extends __BaseException {
182
+ readonly name: "ResourceNotFoundException";
183
+ readonly $fault: "client";
184
+ Message?: string;
185
+ Code?: string;
186
+ ResourceType?: string;
187
+ ResourceIds?: string[];
188
+ constructor(
189
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
190
+ );
191
+ }
192
+ export declare enum GettablePolicyStateValues {
193
+ DISABLED = "DISABLED",
194
+ ENABLED = "ENABLED",
195
+ ERROR = "ERROR",
196
+ }
197
+ export interface GetLifecyclePoliciesRequest {
198
+ PolicyIds?: string[];
199
+ State?: GettablePolicyStateValues | string;
200
+ ResourceTypes?: (ResourceTypeValues | string)[];
201
+ TargetTags?: string[];
202
+ TagsToAdd?: string[];
203
+ }
204
+ export interface LifecyclePolicySummary {
205
+ PolicyId?: string;
206
+ Description?: string;
207
+ State?: GettablePolicyStateValues | string;
208
+ Tags?: Record<string, string>;
209
+ PolicyType?: PolicyTypeValues | string;
210
+ }
211
+ export interface GetLifecyclePoliciesResponse {
212
+ Policies?: LifecyclePolicySummary[];
213
+ }
214
+ export interface GetLifecyclePolicyRequest {
215
+ PolicyId: string | undefined;
216
+ }
217
+ export interface LifecyclePolicy {
218
+ PolicyId?: string;
219
+ Description?: string;
220
+ State?: GettablePolicyStateValues | string;
221
+ StatusMessage?: string;
222
+ ExecutionRoleArn?: string;
223
+ DateCreated?: Date;
224
+ DateModified?: Date;
225
+ PolicyDetails?: PolicyDetails;
226
+ Tags?: Record<string, string>;
227
+ PolicyArn?: string;
228
+ }
229
+ export interface GetLifecyclePolicyResponse {
230
+ Policy?: LifecyclePolicy;
231
+ }
232
+ export interface ListTagsForResourceRequest {
233
+ ResourceArn: string | undefined;
234
+ }
235
+ export interface ListTagsForResourceResponse {
236
+ Tags?: Record<string, string>;
237
+ }
238
+ export interface TagResourceRequest {
239
+ ResourceArn: string | undefined;
240
+ Tags: Record<string, string> | undefined;
241
+ }
242
+ export interface TagResourceResponse {}
243
+ export interface UntagResourceRequest {
244
+ ResourceArn: string | undefined;
245
+ TagKeys: string[] | undefined;
246
+ }
247
+ export interface UntagResourceResponse {}
248
+ export interface UpdateLifecyclePolicyRequest {
249
+ PolicyId: string | undefined;
250
+ ExecutionRoleArn?: string;
251
+ State?: SettablePolicyStateValues | string;
252
+ Description?: string;
253
+ PolicyDetails?: PolicyDetails;
254
+ }
255
+ export interface UpdateLifecyclePolicyResponse {}
256
+ export declare const EncryptionConfigurationFilterSensitiveLog: (
257
+ obj: EncryptionConfiguration
258
+ ) => any;
259
+ export declare const CrossRegionCopyRetainRuleFilterSensitiveLog: (
260
+ obj: CrossRegionCopyRetainRule
261
+ ) => any;
262
+ export declare const CrossRegionCopyActionFilterSensitiveLog: (
263
+ obj: CrossRegionCopyAction
264
+ ) => any;
265
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
266
+ export declare const EventParametersFilterSensitiveLog: (
267
+ obj: EventParameters
268
+ ) => any;
269
+ export declare const EventSourceFilterSensitiveLog: (obj: EventSource) => any;
270
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
271
+ export declare const _ParametersFilterSensitiveLog: (obj: _Parameters) => any;
272
+ export declare const CreateRuleFilterSensitiveLog: (obj: CreateRule) => any;
273
+ export declare const CrossRegionCopyDeprecateRuleFilterSensitiveLog: (
274
+ obj: CrossRegionCopyDeprecateRule
275
+ ) => any;
276
+ export declare const CrossRegionCopyRuleFilterSensitiveLog: (
277
+ obj: CrossRegionCopyRule
278
+ ) => any;
279
+ export declare const DeprecateRuleFilterSensitiveLog: (
280
+ obj: DeprecateRule
281
+ ) => any;
282
+ export declare const FastRestoreRuleFilterSensitiveLog: (
283
+ obj: FastRestoreRule
284
+ ) => any;
285
+ export declare const RetainRuleFilterSensitiveLog: (obj: RetainRule) => any;
286
+ export declare const ShareRuleFilterSensitiveLog: (obj: ShareRule) => any;
287
+ export declare const ScheduleFilterSensitiveLog: (obj: Schedule) => any;
288
+ export declare const PolicyDetailsFilterSensitiveLog: (
289
+ obj: PolicyDetails
290
+ ) => any;
291
+ export declare const CreateLifecyclePolicyRequestFilterSensitiveLog: (
292
+ obj: CreateLifecyclePolicyRequest
293
+ ) => any;
294
+ export declare const CreateLifecyclePolicyResponseFilterSensitiveLog: (
295
+ obj: CreateLifecyclePolicyResponse
296
+ ) => any;
297
+ export declare const DeleteLifecyclePolicyRequestFilterSensitiveLog: (
298
+ obj: DeleteLifecyclePolicyRequest
299
+ ) => any;
300
+ export declare const DeleteLifecyclePolicyResponseFilterSensitiveLog: (
301
+ obj: DeleteLifecyclePolicyResponse
302
+ ) => any;
303
+ export declare const GetLifecyclePoliciesRequestFilterSensitiveLog: (
304
+ obj: GetLifecyclePoliciesRequest
305
+ ) => any;
306
+ export declare const LifecyclePolicySummaryFilterSensitiveLog: (
307
+ obj: LifecyclePolicySummary
308
+ ) => any;
309
+ export declare const GetLifecyclePoliciesResponseFilterSensitiveLog: (
310
+ obj: GetLifecyclePoliciesResponse
311
+ ) => any;
312
+ export declare const GetLifecyclePolicyRequestFilterSensitiveLog: (
313
+ obj: GetLifecyclePolicyRequest
314
+ ) => any;
315
+ export declare const LifecyclePolicyFilterSensitiveLog: (
316
+ obj: LifecyclePolicy
317
+ ) => any;
318
+ export declare const GetLifecyclePolicyResponseFilterSensitiveLog: (
319
+ obj: GetLifecyclePolicyResponse
320
+ ) => any;
321
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
322
+ obj: ListTagsForResourceRequest
323
+ ) => any;
324
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
325
+ obj: ListTagsForResourceResponse
326
+ ) => any;
327
+ export declare const TagResourceRequestFilterSensitiveLog: (
328
+ obj: TagResourceRequest
329
+ ) => any;
330
+ export declare const TagResourceResponseFilterSensitiveLog: (
331
+ obj: TagResourceResponse
332
+ ) => any;
333
+ export declare const UntagResourceRequestFilterSensitiveLog: (
334
+ obj: UntagResourceRequest
335
+ ) => any;
336
+ export declare const UntagResourceResponseFilterSensitiveLog: (
337
+ obj: UntagResourceResponse
338
+ ) => any;
339
+ export declare const UpdateLifecyclePolicyRequestFilterSensitiveLog: (
340
+ obj: UpdateLifecyclePolicyRequest
341
+ ) => any;
342
+ export declare const UpdateLifecyclePolicyResponseFilterSensitiveLog: (
343
+ obj: UpdateLifecyclePolicyResponse
344
+ ) => any;