@aws-sdk/client-backup 3.932.0 → 3.934.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/README.md +40 -0
- package/dist-cjs/index.js +277 -8
- package/dist-es/Backup.js +10 -0
- package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
- package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +200 -8
- package/dist-types/Backup.d.ts +36 -0
- package/dist-types/BackupClient.d.ts +7 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/DescribeBackupJobCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCopyJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +1 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +3 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +3 -0
- package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
- package/dist-types/commands/ListBackupJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListCopyJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +1 -0
- package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
- package/dist-types/commands/StartBackupJobCommand.d.ts +2 -0
- package/dist-types/commands/StartCopyJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/UpdateRecoveryPointLifecycleCommand.d.ts +2 -0
- package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +395 -2
- package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/Backup.d.ts +86 -0
- package/dist-types/ts3.4/BackupClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -0
- package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +6 -6
|
@@ -272,6 +272,17 @@ export interface RecoveryPointCreator {
|
|
|
272
272
|
*/
|
|
273
273
|
BackupRuleTimezone?: string | undefined;
|
|
274
274
|
}
|
|
275
|
+
/**
|
|
276
|
+
* @public
|
|
277
|
+
* @enum
|
|
278
|
+
*/
|
|
279
|
+
export declare const LifecycleDeleteAfterEvent: {
|
|
280
|
+
readonly DELETE_AFTER_COPY: "DELETE_AFTER_COPY";
|
|
281
|
+
};
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
285
|
+
export type LifecycleDeleteAfterEvent = (typeof LifecycleDeleteAfterEvent)[keyof typeof LifecycleDeleteAfterEvent];
|
|
275
286
|
/**
|
|
276
287
|
* <p>Specifies the time period, in days, before a recovery point transitions to cold storage
|
|
277
288
|
* or is deleted.</p>
|
|
@@ -305,6 +316,13 @@ export interface Lifecycle {
|
|
|
305
316
|
* @public
|
|
306
317
|
*/
|
|
307
318
|
OptInToArchiveForSupportedResources?: boolean | undefined;
|
|
319
|
+
/**
|
|
320
|
+
* <p>The event after which a recovery point is deleted. A recovery point with both
|
|
321
|
+
* <code>DeleteAfterDays</code> and <code>DeleteAfterEvent</code> will delete after
|
|
322
|
+
* whichever condition is satisfied first. Not valid as an input.</p>
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
325
|
+
DeleteAfterEvent?: LifecycleDeleteAfterEvent | undefined;
|
|
308
326
|
}
|
|
309
327
|
/**
|
|
310
328
|
* @public
|
|
@@ -733,6 +751,15 @@ export interface BackupRule {
|
|
|
733
751
|
* @public
|
|
734
752
|
*/
|
|
735
753
|
TargetBackupVaultName: string | undefined;
|
|
754
|
+
/**
|
|
755
|
+
* <p>The ARN of a logically air-gapped vault. ARN must be in the same account and Region.
|
|
756
|
+
* If provided, supported fully managed resources back up directly to logically air-gapped vault,
|
|
757
|
+
* while other supported resources create a temporary (billable) snapshot in backup vault,
|
|
758
|
+
* then copy it to logically air-gapped vault. Unsupported resources only back up to the specified
|
|
759
|
+
* backup vault.</p>
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
762
|
+
TargetLogicallyAirGappedBackupVaultArn?: string | undefined;
|
|
736
763
|
/**
|
|
737
764
|
* <p>A cron expression in UTC specifying when Backup initiates a backup job.
|
|
738
765
|
* When no CRON expression is provided, Backup will use the default
|
|
@@ -865,6 +892,15 @@ export interface BackupRuleInput {
|
|
|
865
892
|
* @public
|
|
866
893
|
*/
|
|
867
894
|
TargetBackupVaultName: string | undefined;
|
|
895
|
+
/**
|
|
896
|
+
* <p>The ARN of a logically air-gapped vault. ARN must be in the same account and Region.
|
|
897
|
+
* If provided, supported fully managed resources back up directly to logically air-gapped vault,
|
|
898
|
+
* while other supported resources create a temporary (billable) snapshot in backup vault,
|
|
899
|
+
* then copy it to logically air-gapped vault. Unsupported resources only back up to the specified
|
|
900
|
+
* backup vault.</p>
|
|
901
|
+
* @public
|
|
902
|
+
*/
|
|
903
|
+
TargetLogicallyAirGappedBackupVaultArn?: string | undefined;
|
|
868
904
|
/**
|
|
869
905
|
* <p>A CRON expression in UTC specifying when Backup initiates a backup
|
|
870
906
|
* job. When no CRON expression is provided, Backup will use the default
|
|
@@ -1724,6 +1760,12 @@ export interface CopyJob {
|
|
|
1724
1760
|
* @public
|
|
1725
1761
|
*/
|
|
1726
1762
|
CreatedBy?: RecoveryPointCreator | undefined;
|
|
1763
|
+
/**
|
|
1764
|
+
* <p>The backup job ID that initiated this copy job. Only applicable to scheduled copy
|
|
1765
|
+
* jobs and automatic copy jobs to logically air-gapped vault.</p>
|
|
1766
|
+
* @public
|
|
1767
|
+
*/
|
|
1768
|
+
CreatedByBackupJobId?: string | undefined;
|
|
1727
1769
|
/**
|
|
1728
1770
|
* <p>The type of Amazon Web Services resource to be copied; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.</p>
|
|
1729
1771
|
* @public
|
|
@@ -3023,6 +3065,111 @@ export interface CreateRestoreTestingSelectionOutput {
|
|
|
3023
3065
|
*/
|
|
3024
3066
|
RestoreTestingSelectionName: string | undefined;
|
|
3025
3067
|
}
|
|
3068
|
+
/**
|
|
3069
|
+
* <p>This contains metadata about resource selection for tiering configurations.</p>
|
|
3070
|
+
* <p>You can specify up to 5 different resource selections per tiering configuration.
|
|
3071
|
+
* Data moved to lower-cost tier remains there until deletion (one-way transition).</p>
|
|
3072
|
+
* @public
|
|
3073
|
+
*/
|
|
3074
|
+
export interface ResourceSelection {
|
|
3075
|
+
/**
|
|
3076
|
+
* <p>An array of strings that either contains ARNs of the associated resources
|
|
3077
|
+
* or contains a wildcard <code>*</code> to specify all resources.
|
|
3078
|
+
* You can specify up to 100 specific resources per tiering configuration.</p>
|
|
3079
|
+
* @public
|
|
3080
|
+
*/
|
|
3081
|
+
Resources: string[] | undefined;
|
|
3082
|
+
/**
|
|
3083
|
+
* <p>The number of days after creation within a backup vault that an object can transition to the low cost warm storage tier.
|
|
3084
|
+
* Must be a positive integer between 60 and 36500 days.</p>
|
|
3085
|
+
* @public
|
|
3086
|
+
*/
|
|
3087
|
+
TieringDownSettingsInDays: number | undefined;
|
|
3088
|
+
/**
|
|
3089
|
+
* <p>The type of Amazon Web Services resource; for example, <code>S3</code> for Amazon S3.
|
|
3090
|
+
* For tiering configurations, this is currently limited to <code>S3</code>.</p>
|
|
3091
|
+
* @public
|
|
3092
|
+
*/
|
|
3093
|
+
ResourceType: string | undefined;
|
|
3094
|
+
}
|
|
3095
|
+
/**
|
|
3096
|
+
* <p>This contains metadata about a tiering configuration for create operations.</p>
|
|
3097
|
+
* @public
|
|
3098
|
+
*/
|
|
3099
|
+
export interface TieringConfigurationInputForCreate {
|
|
3100
|
+
/**
|
|
3101
|
+
* <p>The unique name of the tiering configuration. This cannot be changed
|
|
3102
|
+
* after creation, and it must consist of only alphanumeric characters and underscores.</p>
|
|
3103
|
+
* @public
|
|
3104
|
+
*/
|
|
3105
|
+
TieringConfigurationName: string | undefined;
|
|
3106
|
+
/**
|
|
3107
|
+
* <p>The name of the backup vault where the tiering configuration applies.
|
|
3108
|
+
* Use <code>*</code> to apply to all backup vaults.</p>
|
|
3109
|
+
* @public
|
|
3110
|
+
*/
|
|
3111
|
+
BackupVaultName: string | undefined;
|
|
3112
|
+
/**
|
|
3113
|
+
* <p>An array of resource selection objects that specify which resources
|
|
3114
|
+
* are included in the tiering configuration and their tiering settings.</p>
|
|
3115
|
+
* @public
|
|
3116
|
+
*/
|
|
3117
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
3118
|
+
}
|
|
3119
|
+
/**
|
|
3120
|
+
* @public
|
|
3121
|
+
*/
|
|
3122
|
+
export interface CreateTieringConfigurationInput {
|
|
3123
|
+
/**
|
|
3124
|
+
* <p>A tiering configuration must contain a unique <code>TieringConfigurationName</code> string
|
|
3125
|
+
* you create and must contain a <code>BackupVaultName</code> and <code>ResourceSelection</code>.
|
|
3126
|
+
* You may optionally include a <code>CreatorRequestId</code> string.</p>
|
|
3127
|
+
* <p>The <code>TieringConfigurationName</code> is a unique string that is the name of the
|
|
3128
|
+
* tiering configuration. This cannot be changed after creation, and it must consist of only
|
|
3129
|
+
* alphanumeric characters and underscores.</p>
|
|
3130
|
+
* @public
|
|
3131
|
+
*/
|
|
3132
|
+
TieringConfiguration: TieringConfigurationInputForCreate | undefined;
|
|
3133
|
+
/**
|
|
3134
|
+
* <p>The tags to assign to the tiering configuration.</p>
|
|
3135
|
+
* @public
|
|
3136
|
+
*/
|
|
3137
|
+
TieringConfigurationTags?: Record<string, string> | undefined;
|
|
3138
|
+
/**
|
|
3139
|
+
* <p>This is a unique string that identifies the request and
|
|
3140
|
+
* allows failed requests to be retried without the risk of running
|
|
3141
|
+
* the operation twice. This parameter is optional. If used, this
|
|
3142
|
+
* parameter must contain 1 to 50 alphanumeric or '-_.' characters.</p>
|
|
3143
|
+
* @public
|
|
3144
|
+
*/
|
|
3145
|
+
CreatorRequestId?: string | undefined;
|
|
3146
|
+
}
|
|
3147
|
+
/**
|
|
3148
|
+
* @public
|
|
3149
|
+
*/
|
|
3150
|
+
export interface CreateTieringConfigurationOutput {
|
|
3151
|
+
/**
|
|
3152
|
+
* <p>An Amazon Resource Name (ARN) that uniquely identifies the created
|
|
3153
|
+
* tiering configuration.</p>
|
|
3154
|
+
* @public
|
|
3155
|
+
*/
|
|
3156
|
+
TieringConfigurationArn?: string | undefined;
|
|
3157
|
+
/**
|
|
3158
|
+
* <p>This unique string is the name of the tiering configuration.</p>
|
|
3159
|
+
* <p>The name cannot be changed after creation. The name consists of only
|
|
3160
|
+
* alphanumeric characters and underscores. Maximum length is 200.</p>
|
|
3161
|
+
* @public
|
|
3162
|
+
*/
|
|
3163
|
+
TieringConfigurationName?: string | undefined;
|
|
3164
|
+
/**
|
|
3165
|
+
* <p>The date and time a tiering configuration was created, in Unix format
|
|
3166
|
+
* and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
|
|
3167
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
3168
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
3169
|
+
* @public
|
|
3170
|
+
*/
|
|
3171
|
+
CreationTime?: Date | undefined;
|
|
3172
|
+
}
|
|
3026
3173
|
/**
|
|
3027
3174
|
* @public
|
|
3028
3175
|
*/
|
|
@@ -3192,6 +3339,21 @@ export interface DeleteRestoreTestingSelectionInput {
|
|
|
3192
3339
|
*/
|
|
3193
3340
|
RestoreTestingSelectionName: string | undefined;
|
|
3194
3341
|
}
|
|
3342
|
+
/**
|
|
3343
|
+
* @public
|
|
3344
|
+
*/
|
|
3345
|
+
export interface DeleteTieringConfigurationInput {
|
|
3346
|
+
/**
|
|
3347
|
+
* <p>The unique name of a tiering configuration.</p>
|
|
3348
|
+
* @public
|
|
3349
|
+
*/
|
|
3350
|
+
TieringConfigurationName: string | undefined;
|
|
3351
|
+
}
|
|
3352
|
+
/**
|
|
3353
|
+
* @public
|
|
3354
|
+
*/
|
|
3355
|
+
export interface DeleteTieringConfigurationOutput {
|
|
3356
|
+
}
|
|
3195
3357
|
/**
|
|
3196
3358
|
* <p>A dependent Amazon Web Services service or resource returned an error to the Backup service, and the action cannot be completed.</p>
|
|
3197
3359
|
* @public
|
|
@@ -3779,8 +3941,8 @@ export interface DescribeGlobalSettingsInput {
|
|
|
3779
3941
|
*/
|
|
3780
3942
|
export interface DescribeGlobalSettingsOutput {
|
|
3781
3943
|
/**
|
|
3782
|
-
* <p>The status of the flags <code>isCrossAccountBackupEnabled</code
|
|
3783
|
-
*
|
|
3944
|
+
* <p>The status of the flags <code>isCrossAccountBackupEnabled</code>,
|
|
3945
|
+
* <code>isMpaEnabled</code> ('Mpa' refers to multi-party approval), and <code>isDelegatedAdministratorEnabled</code>.</p>
|
|
3784
3946
|
* @public
|
|
3785
3947
|
*/
|
|
3786
3948
|
GlobalSettings?: Record<string, string> | undefined;
|
|
@@ -5534,6 +5696,79 @@ export interface GetSupportedResourceTypesOutput {
|
|
|
5534
5696
|
*/
|
|
5535
5697
|
ResourceTypes?: string[] | undefined;
|
|
5536
5698
|
}
|
|
5699
|
+
/**
|
|
5700
|
+
* @public
|
|
5701
|
+
*/
|
|
5702
|
+
export interface GetTieringConfigurationInput {
|
|
5703
|
+
/**
|
|
5704
|
+
* <p>The unique name of a tiering configuration.</p>
|
|
5705
|
+
* @public
|
|
5706
|
+
*/
|
|
5707
|
+
TieringConfigurationName: string | undefined;
|
|
5708
|
+
}
|
|
5709
|
+
/**
|
|
5710
|
+
* <p>This contains metadata about a tiering configuration.</p>
|
|
5711
|
+
* @public
|
|
5712
|
+
*/
|
|
5713
|
+
export interface TieringConfiguration {
|
|
5714
|
+
/**
|
|
5715
|
+
* <p>The unique name of the tiering configuration. This cannot be changed
|
|
5716
|
+
* after creation, and it must consist of only alphanumeric characters and underscores.</p>
|
|
5717
|
+
* @public
|
|
5718
|
+
*/
|
|
5719
|
+
TieringConfigurationName: string | undefined;
|
|
5720
|
+
/**
|
|
5721
|
+
* <p>An Amazon Resource Name (ARN) that uniquely identifies the
|
|
5722
|
+
* tiering configuration.</p>
|
|
5723
|
+
* @public
|
|
5724
|
+
*/
|
|
5725
|
+
TieringConfigurationArn?: string | undefined;
|
|
5726
|
+
/**
|
|
5727
|
+
* <p>The name of the backup vault where the tiering configuration applies.
|
|
5728
|
+
* Use <code>*</code> to apply to all backup vaults.</p>
|
|
5729
|
+
* @public
|
|
5730
|
+
*/
|
|
5731
|
+
BackupVaultName: string | undefined;
|
|
5732
|
+
/**
|
|
5733
|
+
* <p>An array of resource selection objects that specify which resources
|
|
5734
|
+
* are included in the tiering configuration and their tiering settings.</p>
|
|
5735
|
+
* @public
|
|
5736
|
+
*/
|
|
5737
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
5738
|
+
/**
|
|
5739
|
+
* <p>This is a unique string that identifies the request and
|
|
5740
|
+
* allows failed requests to be retried without the risk of running
|
|
5741
|
+
* the operation twice.</p>
|
|
5742
|
+
* @public
|
|
5743
|
+
*/
|
|
5744
|
+
CreatorRequestId?: string | undefined;
|
|
5745
|
+
/**
|
|
5746
|
+
* <p>The date and time a tiering configuration was created, in Unix format
|
|
5747
|
+
* and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
|
|
5748
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
5749
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
5750
|
+
* @public
|
|
5751
|
+
*/
|
|
5752
|
+
CreationTime?: Date | undefined;
|
|
5753
|
+
/**
|
|
5754
|
+
* <p>The date and time a tiering configuration was updated, in Unix format
|
|
5755
|
+
* and Coordinated Universal Time (UTC). The value of <code>LastUpdatedTime</code>
|
|
5756
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
5757
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
5758
|
+
* @public
|
|
5759
|
+
*/
|
|
5760
|
+
LastUpdatedTime?: Date | undefined;
|
|
5761
|
+
}
|
|
5762
|
+
/**
|
|
5763
|
+
* @public
|
|
5764
|
+
*/
|
|
5765
|
+
export interface GetTieringConfigurationOutput {
|
|
5766
|
+
/**
|
|
5767
|
+
* <p>Specifies the body of a tiering configuration. Includes <code>TieringConfigurationName</code>.</p>
|
|
5768
|
+
* @public
|
|
5769
|
+
*/
|
|
5770
|
+
TieringConfiguration?: TieringConfiguration | undefined;
|
|
5771
|
+
}
|
|
5537
5772
|
/**
|
|
5538
5773
|
* @public
|
|
5539
5774
|
*/
|
|
@@ -6224,6 +6459,11 @@ export interface ListCopyJobsInput {
|
|
|
6224
6459
|
* @public
|
|
6225
6460
|
*/
|
|
6226
6461
|
ByMessageCategory?: string | undefined;
|
|
6462
|
+
/**
|
|
6463
|
+
* <p>Filters copy jobs by the specified source recovery point ARN.</p>
|
|
6464
|
+
* @public
|
|
6465
|
+
*/
|
|
6466
|
+
BySourceRecoveryPointArn?: string | undefined;
|
|
6227
6467
|
}
|
|
6228
6468
|
/**
|
|
6229
6469
|
* @public
|
|
@@ -8388,6 +8628,81 @@ export interface ListTagsOutput {
|
|
|
8388
8628
|
*/
|
|
8389
8629
|
Tags?: Record<string, string> | undefined;
|
|
8390
8630
|
}
|
|
8631
|
+
/**
|
|
8632
|
+
* @public
|
|
8633
|
+
*/
|
|
8634
|
+
export interface ListTieringConfigurationsInput {
|
|
8635
|
+
/**
|
|
8636
|
+
* <p>The maximum number of items to be returned.</p>
|
|
8637
|
+
* @public
|
|
8638
|
+
*/
|
|
8639
|
+
MaxResults?: number | undefined;
|
|
8640
|
+
/**
|
|
8641
|
+
* <p>The next item following a partial list of returned items. For example, if a request
|
|
8642
|
+
* is made to return <code>MaxResults</code> number of items, <code>NextToken</code>
|
|
8643
|
+
* allows you to return more items in your list starting at the location pointed to by the
|
|
8644
|
+
* next token.</p>
|
|
8645
|
+
* @public
|
|
8646
|
+
*/
|
|
8647
|
+
NextToken?: string | undefined;
|
|
8648
|
+
}
|
|
8649
|
+
/**
|
|
8650
|
+
* <p>This contains metadata about a tiering configuration returned in a list.</p>
|
|
8651
|
+
* @public
|
|
8652
|
+
*/
|
|
8653
|
+
export interface TieringConfigurationsListMember {
|
|
8654
|
+
/**
|
|
8655
|
+
* <p>An Amazon Resource Name (ARN) that uniquely identifies the
|
|
8656
|
+
* tiering configuration.</p>
|
|
8657
|
+
* @public
|
|
8658
|
+
*/
|
|
8659
|
+
TieringConfigurationArn?: string | undefined;
|
|
8660
|
+
/**
|
|
8661
|
+
* <p>The unique name of the tiering configuration.</p>
|
|
8662
|
+
* @public
|
|
8663
|
+
*/
|
|
8664
|
+
TieringConfigurationName?: string | undefined;
|
|
8665
|
+
/**
|
|
8666
|
+
* <p>The name of the backup vault where the tiering configuration applies.
|
|
8667
|
+
* Use <code>*</code> to apply to all backup vaults.</p>
|
|
8668
|
+
* @public
|
|
8669
|
+
*/
|
|
8670
|
+
BackupVaultName?: string | undefined;
|
|
8671
|
+
/**
|
|
8672
|
+
* <p>The date and time a tiering configuration was created, in Unix format
|
|
8673
|
+
* and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
|
|
8674
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
8675
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
8676
|
+
* @public
|
|
8677
|
+
*/
|
|
8678
|
+
CreationTime?: Date | undefined;
|
|
8679
|
+
/**
|
|
8680
|
+
* <p>The date and time a tiering configuration was updated, in Unix format
|
|
8681
|
+
* and Coordinated Universal Time (UTC). The value of <code>LastUpdatedTime</code>
|
|
8682
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
8683
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
8684
|
+
* @public
|
|
8685
|
+
*/
|
|
8686
|
+
LastUpdatedTime?: Date | undefined;
|
|
8687
|
+
}
|
|
8688
|
+
/**
|
|
8689
|
+
* @public
|
|
8690
|
+
*/
|
|
8691
|
+
export interface ListTieringConfigurationsOutput {
|
|
8692
|
+
/**
|
|
8693
|
+
* <p>An array of tiering configurations returned by the <code>ListTieringConfigurations</code> call.</p>
|
|
8694
|
+
* @public
|
|
8695
|
+
*/
|
|
8696
|
+
TieringConfigurations?: TieringConfigurationsListMember[] | undefined;
|
|
8697
|
+
/**
|
|
8698
|
+
* <p>The next item following a partial list of returned items. For example, if a request
|
|
8699
|
+
* is made to return <code>MaxResults</code> number of items, <code>NextToken</code>
|
|
8700
|
+
* allows you to return more items in your list starting at the location pointed to by the
|
|
8701
|
+
* next token.</p>
|
|
8702
|
+
* @public
|
|
8703
|
+
*/
|
|
8704
|
+
NextToken?: string | undefined;
|
|
8705
|
+
}
|
|
8391
8706
|
/**
|
|
8392
8707
|
* @public
|
|
8393
8708
|
*/
|
|
@@ -8559,6 +8874,15 @@ export interface StartBackupJobInput {
|
|
|
8559
8874
|
* @public
|
|
8560
8875
|
*/
|
|
8561
8876
|
BackupVaultName: string | undefined;
|
|
8877
|
+
/**
|
|
8878
|
+
* <p>The ARN of a logically air-gapped vault. ARN must be in the same account and Region.
|
|
8879
|
+
* If provided, supported fully managed resources back up directly to logically air-gapped vault,
|
|
8880
|
+
* while other supported resources create a temporary (billable) snapshot in backup vault,
|
|
8881
|
+
* then copy it to logically air-gapped vault. Unsupported resources only back up to the specified
|
|
8882
|
+
* backup vault.</p>
|
|
8883
|
+
* @public
|
|
8884
|
+
*/
|
|
8885
|
+
LogicallyAirGappedBackupVaultArn?: string | undefined;
|
|
8562
8886
|
/**
|
|
8563
8887
|
* <p>An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN
|
|
8564
8888
|
* depends on the resource type.</p>
|
|
@@ -9158,6 +9482,10 @@ export interface UpdateGlobalSettingsInput {
|
|
|
9158
9482
|
* be true or false. Example:
|
|
9159
9483
|
* <code>update-global-settings --global-settings isMpaEnabled=false
|
|
9160
9484
|
* --region us-west-2</code>.</p>
|
|
9485
|
+
* <p>A value for Backup Service-Linked Role creation, styled as<code>isDelegatedAdministratorEnabled</code>.
|
|
9486
|
+
* Values can be true or false. Example:
|
|
9487
|
+
* <code>update-global-settings --global-settings isDelegatedAdministratorEnabled=false
|
|
9488
|
+
* --region us-west-2</code>.</p>
|
|
9161
9489
|
* @public
|
|
9162
9490
|
*/
|
|
9163
9491
|
GlobalSettings?: Record<string, string> | undefined;
|
|
@@ -9574,3 +9902,68 @@ export interface UpdateRestoreTestingSelectionOutput {
|
|
|
9574
9902
|
*/
|
|
9575
9903
|
UpdateTime: Date | undefined;
|
|
9576
9904
|
}
|
|
9905
|
+
/**
|
|
9906
|
+
* <p>This contains metadata about a tiering configuration for update operations.</p>
|
|
9907
|
+
* @public
|
|
9908
|
+
*/
|
|
9909
|
+
export interface TieringConfigurationInputForUpdate {
|
|
9910
|
+
/**
|
|
9911
|
+
* <p>An array of resource selection objects that specify which resources
|
|
9912
|
+
* are included in the tiering configuration and their tiering settings.</p>
|
|
9913
|
+
* @public
|
|
9914
|
+
*/
|
|
9915
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
9916
|
+
/**
|
|
9917
|
+
* <p>The name of the backup vault where the tiering configuration applies.
|
|
9918
|
+
* Use <code>*</code> to apply to all backup vaults.</p>
|
|
9919
|
+
* @public
|
|
9920
|
+
*/
|
|
9921
|
+
BackupVaultName: string | undefined;
|
|
9922
|
+
}
|
|
9923
|
+
/**
|
|
9924
|
+
* @public
|
|
9925
|
+
*/
|
|
9926
|
+
export interface UpdateTieringConfigurationInput {
|
|
9927
|
+
/**
|
|
9928
|
+
* <p>The name of a tiering configuration to update.</p>
|
|
9929
|
+
* @public
|
|
9930
|
+
*/
|
|
9931
|
+
TieringConfigurationName: string | undefined;
|
|
9932
|
+
/**
|
|
9933
|
+
* <p>Specifies the body of a tiering configuration.</p>
|
|
9934
|
+
* @public
|
|
9935
|
+
*/
|
|
9936
|
+
TieringConfiguration: TieringConfigurationInputForUpdate | undefined;
|
|
9937
|
+
}
|
|
9938
|
+
/**
|
|
9939
|
+
* @public
|
|
9940
|
+
*/
|
|
9941
|
+
export interface UpdateTieringConfigurationOutput {
|
|
9942
|
+
/**
|
|
9943
|
+
* <p>An Amazon Resource Name (ARN) that uniquely identifies the updated
|
|
9944
|
+
* tiering configuration.</p>
|
|
9945
|
+
* @public
|
|
9946
|
+
*/
|
|
9947
|
+
TieringConfigurationArn?: string | undefined;
|
|
9948
|
+
/**
|
|
9949
|
+
* <p>This unique string is the name of the tiering configuration.</p>
|
|
9950
|
+
* @public
|
|
9951
|
+
*/
|
|
9952
|
+
TieringConfigurationName?: string | undefined;
|
|
9953
|
+
/**
|
|
9954
|
+
* <p>The date and time a tiering configuration was created, in Unix format
|
|
9955
|
+
* and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
|
|
9956
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
9957
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
9958
|
+
* @public
|
|
9959
|
+
*/
|
|
9960
|
+
CreationTime?: Date | undefined;
|
|
9961
|
+
/**
|
|
9962
|
+
* <p>The date and time a tiering configuration was updated, in Unix format
|
|
9963
|
+
* and Coordinated Universal Time (UTC). The value of <code>LastUpdatedTime</code>
|
|
9964
|
+
* is accurate to milliseconds. For example, the value 1516925490.087 represents
|
|
9965
|
+
* Friday, January 26, 2018 12:11:30.087AM.</p>
|
|
9966
|
+
* @public
|
|
9967
|
+
*/
|
|
9968
|
+
LastUpdatedTime?: Date | undefined;
|
|
9969
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListTieringConfigurationsCommandInput, ListTieringConfigurationsCommandOutput } from "../commands/ListTieringConfigurationsCommand";
|
|
3
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListTieringConfigurations: (config: BackupPaginationConfiguration, input: ListTieringConfigurationsCommandInput, ...rest: any[]) => Paginator<ListTieringConfigurationsCommandOutput>;
|
|
@@ -46,6 +46,8 @@ export declare var CreateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
46
46
|
export declare var CreateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
47
47
|
export declare var CreateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
48
48
|
export declare var CreateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
49
|
+
export declare var CreateTieringConfigurationInput: StaticStructureSchema;
|
|
50
|
+
export declare var CreateTieringConfigurationOutput: StaticStructureSchema;
|
|
49
51
|
export declare var DateRange: StaticStructureSchema;
|
|
50
52
|
export declare var DeleteBackupPlanInput: StaticStructureSchema;
|
|
51
53
|
export declare var DeleteBackupPlanOutput: StaticStructureSchema;
|
|
@@ -59,6 +61,8 @@ export declare var DeleteRecoveryPointInput: StaticStructureSchema;
|
|
|
59
61
|
export declare var DeleteReportPlanInput: StaticStructureSchema;
|
|
60
62
|
export declare var DeleteRestoreTestingPlanInput: StaticStructureSchema;
|
|
61
63
|
export declare var DeleteRestoreTestingSelectionInput: StaticStructureSchema;
|
|
64
|
+
export declare var DeleteTieringConfigurationInput: StaticStructureSchema;
|
|
65
|
+
export declare var DeleteTieringConfigurationOutput: StaticStructureSchema;
|
|
62
66
|
export declare var DependencyFailureException: StaticErrorSchema;
|
|
63
67
|
export declare var DescribeBackupJobInput: StaticStructureSchema;
|
|
64
68
|
export declare var DescribeBackupJobOutput: StaticStructureSchema;
|
|
@@ -116,6 +120,8 @@ export declare var GetRestoreTestingPlanOutput: StaticStructureSchema;
|
|
|
116
120
|
export declare var GetRestoreTestingSelectionInput: StaticStructureSchema;
|
|
117
121
|
export declare var GetRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
118
122
|
export declare var GetSupportedResourceTypesOutput: StaticStructureSchema;
|
|
123
|
+
export declare var GetTieringConfigurationInput: StaticStructureSchema;
|
|
124
|
+
export declare var GetTieringConfigurationOutput: StaticStructureSchema;
|
|
119
125
|
export declare var IndexAction: StaticStructureSchema;
|
|
120
126
|
export declare var IndexedRecoveryPoint: StaticStructureSchema;
|
|
121
127
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
@@ -179,6 +185,8 @@ export declare var ListRestoreTestingSelectionsInput: StaticStructureSchema;
|
|
|
179
185
|
export declare var ListRestoreTestingSelectionsOutput: StaticStructureSchema;
|
|
180
186
|
export declare var ListTagsInput: StaticStructureSchema;
|
|
181
187
|
export declare var ListTagsOutput: StaticStructureSchema;
|
|
188
|
+
export declare var ListTieringConfigurationsInput: StaticStructureSchema;
|
|
189
|
+
export declare var ListTieringConfigurationsOutput: StaticStructureSchema;
|
|
182
190
|
export declare var MissingParameterValueException: StaticErrorSchema;
|
|
183
191
|
export declare var ProtectedResource: StaticStructureSchema;
|
|
184
192
|
export declare var ProtectedResourceConditions: StaticStructureSchema;
|
|
@@ -197,6 +205,7 @@ export declare var ReportJob: StaticStructureSchema;
|
|
|
197
205
|
export declare var ReportPlan: StaticStructureSchema;
|
|
198
206
|
export declare var ReportSetting: StaticStructureSchema;
|
|
199
207
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
208
|
+
export declare var ResourceSelection: StaticStructureSchema;
|
|
200
209
|
export declare var RestoreAccessBackupVaultListMember: StaticStructureSchema;
|
|
201
210
|
export declare var RestoreJobCreator: StaticStructureSchema;
|
|
202
211
|
export declare var RestoreJobsListMember: StaticStructureSchema;
|
|
@@ -223,6 +232,10 @@ export declare var StartRestoreJobInput: StaticStructureSchema;
|
|
|
223
232
|
export declare var StartRestoreJobOutput: StaticStructureSchema;
|
|
224
233
|
export declare var StopBackupJobInput: StaticStructureSchema;
|
|
225
234
|
export declare var TagResourceInput: StaticStructureSchema;
|
|
235
|
+
export declare var TieringConfiguration: StaticStructureSchema;
|
|
236
|
+
export declare var TieringConfigurationInputForCreate: StaticStructureSchema;
|
|
237
|
+
export declare var TieringConfigurationInputForUpdate: StaticStructureSchema;
|
|
238
|
+
export declare var TieringConfigurationsListMember: StaticStructureSchema;
|
|
226
239
|
export declare var UntagResourceInput: StaticStructureSchema;
|
|
227
240
|
export declare var UpdateBackupPlanInput: StaticStructureSchema;
|
|
228
241
|
export declare var UpdateBackupPlanOutput: StaticStructureSchema;
|
|
@@ -240,6 +253,8 @@ export declare var UpdateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
240
253
|
export declare var UpdateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
241
254
|
export declare var UpdateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
242
255
|
export declare var UpdateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
256
|
+
export declare var UpdateTieringConfigurationInput: StaticStructureSchema;
|
|
257
|
+
export declare var UpdateTieringConfigurationOutput: StaticStructureSchema;
|
|
243
258
|
export declare var __Unit: "unit";
|
|
244
259
|
export declare var BackupServiceException: StaticErrorSchema;
|
|
245
260
|
export declare var AdvancedBackupSettings: StaticListSchema;
|
|
@@ -275,6 +290,7 @@ export declare var ReportJobList: StaticListSchema;
|
|
|
275
290
|
export declare var ReportPlanList: StaticListSchema;
|
|
276
291
|
export declare var ResourceArns: number;
|
|
277
292
|
export declare var ResourceIdentifiers: number;
|
|
293
|
+
export declare var ResourceSelections: StaticListSchema;
|
|
278
294
|
export declare var ResourceTypeList: number;
|
|
279
295
|
export declare var ResourceTypes: number;
|
|
280
296
|
export declare var RestoreAccessBackupVaultList: StaticListSchema;
|
|
@@ -286,6 +302,7 @@ export declare var RestoreTestingSelections: StaticListSchema;
|
|
|
286
302
|
export declare var ScheduledRunsPreview: StaticListSchema;
|
|
287
303
|
export declare var stringList: number;
|
|
288
304
|
export declare var TagKeyList: StaticListSchema;
|
|
305
|
+
export declare var TieringConfigurationsList: StaticListSchema;
|
|
289
306
|
export declare var VaultNames: number;
|
|
290
307
|
export declare var BackupJobChildJobsInState: number;
|
|
291
308
|
export declare var BackupOptions: number;
|
|
@@ -309,6 +326,7 @@ export declare var CreateReportPlan: StaticOperationSchema;
|
|
|
309
326
|
export declare var CreateRestoreAccessBackupVault: StaticOperationSchema;
|
|
310
327
|
export declare var CreateRestoreTestingPlan: StaticOperationSchema;
|
|
311
328
|
export declare var CreateRestoreTestingSelection: StaticOperationSchema;
|
|
329
|
+
export declare var CreateTieringConfiguration: StaticOperationSchema;
|
|
312
330
|
export declare var DeleteBackupPlan: StaticOperationSchema;
|
|
313
331
|
export declare var DeleteBackupSelection: StaticOperationSchema;
|
|
314
332
|
export declare var DeleteBackupVault: StaticOperationSchema;
|
|
@@ -320,6 +338,7 @@ export declare var DeleteRecoveryPoint: StaticOperationSchema;
|
|
|
320
338
|
export declare var DeleteReportPlan: StaticOperationSchema;
|
|
321
339
|
export declare var DeleteRestoreTestingPlan: StaticOperationSchema;
|
|
322
340
|
export declare var DeleteRestoreTestingSelection: StaticOperationSchema;
|
|
341
|
+
export declare var DeleteTieringConfiguration: StaticOperationSchema;
|
|
323
342
|
export declare var DescribeBackupJob: StaticOperationSchema;
|
|
324
343
|
export declare var DescribeBackupVault: StaticOperationSchema;
|
|
325
344
|
export declare var DescribeCopyJob: StaticOperationSchema;
|
|
@@ -349,6 +368,7 @@ export declare var GetRestoreTestingInferredMetadata: StaticOperationSchema;
|
|
|
349
368
|
export declare var GetRestoreTestingPlan: StaticOperationSchema;
|
|
350
369
|
export declare var GetRestoreTestingSelection: StaticOperationSchema;
|
|
351
370
|
export declare var GetSupportedResourceTypes: StaticOperationSchema;
|
|
371
|
+
export declare var GetTieringConfiguration: StaticOperationSchema;
|
|
352
372
|
export declare var ListBackupJobs: StaticOperationSchema;
|
|
353
373
|
export declare var ListBackupJobSummaries: StaticOperationSchema;
|
|
354
374
|
export declare var ListBackupPlans: StaticOperationSchema;
|
|
@@ -375,6 +395,7 @@ export declare var ListRestoreJobSummaries: StaticOperationSchema;
|
|
|
375
395
|
export declare var ListRestoreTestingPlans: StaticOperationSchema;
|
|
376
396
|
export declare var ListRestoreTestingSelections: StaticOperationSchema;
|
|
377
397
|
export declare var ListTags: StaticOperationSchema;
|
|
398
|
+
export declare var ListTieringConfigurations: StaticOperationSchema;
|
|
378
399
|
export declare var PutBackupVaultAccessPolicy: StaticOperationSchema;
|
|
379
400
|
export declare var PutBackupVaultLockConfiguration: StaticOperationSchema;
|
|
380
401
|
export declare var PutBackupVaultNotifications: StaticOperationSchema;
|
|
@@ -396,3 +417,4 @@ export declare var UpdateRegionSettings: StaticOperationSchema;
|
|
|
396
417
|
export declare var UpdateReportPlan: StaticOperationSchema;
|
|
397
418
|
export declare var UpdateRestoreTestingPlan: StaticOperationSchema;
|
|
398
419
|
export declare var UpdateRestoreTestingSelection: StaticOperationSchema;
|
|
420
|
+
export declare var UpdateTieringConfiguration: StaticOperationSchema;
|