@aws-sdk/client-backup 3.1104.0 → 3.1105.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 +42 -0
- package/dist-cjs/index.js +190 -1
- package/dist-es/Backup.js +18 -0
- package/dist-es/commands/CreateBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/DeleteBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/DescribeBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsByRecoveryPointCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsByResourceCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsCommand.js +4 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListBackupAccessPointsByRecoveryPointPaginator.js +4 -0
- package/dist-es/pagination/ListBackupAccessPointsByResourcePaginator.js +4 -0
- package/dist-es/pagination/ListBackupAccessPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +113 -0
- package/dist-types/Backup.d.ts +64 -0
- package/dist-types/BackupClient.d.ts +8 -2
- package/dist-types/commands/CreateBackupAccessPointCommand.d.ts +112 -0
- package/dist-types/commands/DeleteBackupAccessPointCommand.d.ts +89 -0
- package/dist-types/commands/DescribeBackupAccessPointCommand.d.ts +103 -0
- package/dist-types/commands/GetBackupVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/ListBackupAccessPointsByRecoveryPointCommand.d.ts +99 -0
- package/dist-types/commands/ListBackupAccessPointsByResourceCommand.d.ts +98 -0
- package/dist-types/commands/ListBackupAccessPointsCommand.d.ts +96 -0
- package/dist-types/commands/ListProtectedResourcesCommand.d.ts +4 -3
- package/dist-types/commands/PutBackupVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +335 -3
- package/dist-types/pagination/ListBackupAccessPointsByRecoveryPointPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBackupAccessPointsByResourcePaginator.d.ts +7 -0
- package/dist-types/pagination/ListBackupAccessPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/Backup.d.ts +124 -0
- package/dist-types/ts3.4/BackupClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateBackupAccessPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteBackupAccessPointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeBackupAccessPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsByRecoveryPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsByResourceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +70 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsByRecoveryPointPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsByResourcePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AggregationPeriod, BackupJobState, BackupJobStatus, BackupVaultEvent, ConditionType, CopyJobState, CopyJobStatus, EncryptionKeyType, Index, IndexStatus, LegalHoldStatus, LifecycleDeleteAfterEvent, MalwareScanner, MpaRevokeSessionStatus, MpaSessionStatus, RecoveryPointStatus, RestoreDeletionStatus, RestoreJobState, RestoreJobStatus, RestoreTestingRecoveryPointSelectionAlgorithm, RestoreTestingRecoveryPointType, RestoreValidationStatus, RuleExecutionType, ScanFinding, ScanJobState, ScanJobStatus, ScanMode, ScanResourceType, ScanResultStatus, ScanState, StorageClass, VaultState, VaultType } from "./enums";
|
|
1
|
+
import type { AccessPointStatus, AggregationPeriod, BackupJobState, BackupJobStatus, BackupVaultEvent, ConditionType, CopyJobState, CopyJobStatus, EncryptionKeyType, Index, IndexStatus, LegalHoldStatus, LifecycleDeleteAfterEvent, MalwareScanner, MpaRevokeSessionStatus, MpaSessionStatus, RecoveryPointStatus, RestoreDeletionStatus, RestoreJobState, RestoreJobStatus, RestoreTestingRecoveryPointSelectionAlgorithm, RestoreTestingRecoveryPointType, RestoreValidationStatus, RuleExecutionType, ScanFinding, ScanJobState, ScanJobStatus, ScanMode, ScanResourceType, ScanResultStatus, ScanState, StorageClass, VaultState, VaultType } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>The backup options for each resource type.</p>
|
|
4
4
|
* @public
|
|
@@ -73,6 +73,75 @@ export interface AssociateBackupVaultMpaApprovalTeamInput {
|
|
|
73
73
|
*/
|
|
74
74
|
RequesterComment?: string | undefined;
|
|
75
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>Contains metadata about a backup access point.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export interface ListAccessPointsMember {
|
|
81
|
+
/**
|
|
82
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the backup access point.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
AccessPointArn: string | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>Metadata for the backup access point. After the backup access point reaches the <code>AVAILABLE</code>
|
|
88
|
+
* status, this map contains <code>S3AccessPointArn</code> and <code>S3AccessPointAlias</code>, which you use with
|
|
89
|
+
* standard Amazon S3 read APIs to access the backup data. For continuous recovery points, this map also
|
|
90
|
+
* contains <code>AccessPointInTime</code> (in format <code>2021-11-27T03:30:27Z</code>). The access point
|
|
91
|
+
* provides access to the content present in the backup at that specific time.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
AccessPointMetadata: Record<string, string> | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The Amazon Resource Name (ARN) of the backup vault that contains the recovery point.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
BackupVaultArn?: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* <p>The name of the backup vault that contains the recovery point.</p>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
BackupVaultName: string | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* <p>The date and time that the backup access point was created, in Unix format and Coordinated Universal Time
|
|
107
|
+
* (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For example, the value
|
|
108
|
+
* 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
CreationTime: Date | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p>The name of the backup access point.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
Name: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The Amazon Resource Name (ARN) of the recovery point that the backup access point provides access to.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
RecoveryPointArn: string | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* <p>The Amazon Resource Name (ARN) of the resource that was backed up, such as an Amazon S3 bucket.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
ResourceArn: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The type of Amazon Web Services resource associated with the recovery point. For example, <code>S3</code> for
|
|
129
|
+
* Amazon Simple Storage Service.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
ResourceType: string | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>The current status of the backup access point.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
Status: AccessPointStatus | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* <p>A message that provides additional detail about the status of the backup access point, such as the reason a
|
|
140
|
+
* creation or deletion attempt failed.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
StatusMessage?: string | undefined;
|
|
144
|
+
}
|
|
76
145
|
/**
|
|
77
146
|
* <p>Contains information about the backup plan and rule that Backup used to
|
|
78
147
|
* initiate the recovery point backup.</p>
|
|
@@ -1200,7 +1269,8 @@ export interface BackupVaultListMember {
|
|
|
1200
1269
|
*/
|
|
1201
1270
|
CreatorRequestId?: string | undefined;
|
|
1202
1271
|
/**
|
|
1203
|
-
* <p>The number of recovery points that are stored in a backup vault
|
|
1272
|
+
* <p>The number of recovery points that are stored in a backup vault. Recovery point count
|
|
1273
|
+
* value displayed in the console can be an approximation.</p>
|
|
1204
1274
|
* @public
|
|
1205
1275
|
*/
|
|
1206
1276
|
NumberOfRecoveryPoints?: number | undefined;
|
|
@@ -1614,6 +1684,64 @@ export interface CopyJobSummary {
|
|
|
1614
1684
|
*/
|
|
1615
1685
|
EndTime?: Date | undefined;
|
|
1616
1686
|
}
|
|
1687
|
+
/**
|
|
1688
|
+
* @public
|
|
1689
|
+
*/
|
|
1690
|
+
export interface CreateBackupAccessPointRequest {
|
|
1691
|
+
/**
|
|
1692
|
+
* <p>Metadata for the backup access point. For continuous (point-in-time) recovery points, you must include an
|
|
1693
|
+
* <code>AccessPointInTime</code> timestamp (in format <code>2021-11-27T03:30:27Z</code>). The access point
|
|
1694
|
+
* provides access to the content present in the backup at that specific time. You can specify any time
|
|
1695
|
+
* within the continuous backup's retention period, up to the latest restorable time. For snapshot recovery
|
|
1696
|
+
* points, do not include <code>AccessPointInTime</code>.</p>
|
|
1697
|
+
* @public
|
|
1698
|
+
*/
|
|
1699
|
+
AccessPointMetadata?: Record<string, string> | undefined;
|
|
1700
|
+
/**
|
|
1701
|
+
* <p>An optional resource-based policy, in JSON format, to apply to the underlying Amazon S3 access
|
|
1702
|
+
* point. The policy controls how backup data can be accessed through the access point. If you do not specify
|
|
1703
|
+
* a policy, access is governed by the caller's IAM permissions. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-policies.html">Configuring IAM policies
|
|
1704
|
+
* for using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1705
|
+
* @public
|
|
1706
|
+
*/
|
|
1707
|
+
AccessPointPolicy?: string | undefined;
|
|
1708
|
+
/**
|
|
1709
|
+
* <p>The name of the backup access point. This name is shared with the Amazon S3 access point namespace.
|
|
1710
|
+
* It must be unique within your account and Region and cannot conflict with an existing Amazon S3 access
|
|
1711
|
+
* point. For more information about access point naming, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-restrictions-limitations-naming-rules.html">Access points naming rules, restrictions, and limitations</a> in the <i>Amazon S3 User
|
|
1712
|
+
* Guide</i>.</p>
|
|
1713
|
+
* @public
|
|
1714
|
+
*/
|
|
1715
|
+
Name: string | undefined;
|
|
1716
|
+
/**
|
|
1717
|
+
* <p>The Amazon Resource Name (ARN) of the recovery point for which to create the backup access point. The
|
|
1718
|
+
* recovery point must be an Amazon S3 recovery point in the <code>AVAILABLE</code>, <code>STOPPED</code>,
|
|
1719
|
+
* or <code>COMPLETED</code> state.</p>
|
|
1720
|
+
* @public
|
|
1721
|
+
*/
|
|
1722
|
+
RecoveryPointArn: string | undefined;
|
|
1723
|
+
/**
|
|
1724
|
+
* <p>The tags to assign to the backup access point.</p>
|
|
1725
|
+
* @public
|
|
1726
|
+
*/
|
|
1727
|
+
Tags?: Record<string, string> | undefined;
|
|
1728
|
+
}
|
|
1729
|
+
/**
|
|
1730
|
+
* @public
|
|
1731
|
+
*/
|
|
1732
|
+
export interface CreateBackupAccessPointResponse {
|
|
1733
|
+
/**
|
|
1734
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the created backup access point.</p>
|
|
1735
|
+
* @public
|
|
1736
|
+
*/
|
|
1737
|
+
AccessPointArn: string | undefined;
|
|
1738
|
+
/**
|
|
1739
|
+
* <p>The current status of the backup access point. A newly created backup access point begins in the
|
|
1740
|
+
* <code>CREATING</code> state and becomes usable when it reaches <code>AVAILABLE</code>.</p>
|
|
1741
|
+
* @public
|
|
1742
|
+
*/
|
|
1743
|
+
Status: AccessPointStatus | undefined;
|
|
1744
|
+
}
|
|
1617
1745
|
/**
|
|
1618
1746
|
* @public
|
|
1619
1747
|
*/
|
|
@@ -2806,6 +2934,16 @@ export interface CreateTieringConfigurationOutput {
|
|
|
2806
2934
|
*/
|
|
2807
2935
|
CreationTime?: Date | undefined;
|
|
2808
2936
|
}
|
|
2937
|
+
/**
|
|
2938
|
+
* @public
|
|
2939
|
+
*/
|
|
2940
|
+
export interface DeleteBackupAccessPointInput {
|
|
2941
|
+
/**
|
|
2942
|
+
* <p>The Amazon Resource Name (ARN) of the backup access point to delete.</p>
|
|
2943
|
+
* @public
|
|
2944
|
+
*/
|
|
2945
|
+
AccessPointArn: string | undefined;
|
|
2946
|
+
}
|
|
2809
2947
|
/**
|
|
2810
2948
|
* @public
|
|
2811
2949
|
*/
|
|
@@ -2990,6 +3128,84 @@ export interface DeleteTieringConfigurationInput {
|
|
|
2990
3128
|
*/
|
|
2991
3129
|
export interface DeleteTieringConfigurationOutput {
|
|
2992
3130
|
}
|
|
3131
|
+
/**
|
|
3132
|
+
* @public
|
|
3133
|
+
*/
|
|
3134
|
+
export interface DescribeBackupAccessPointInput {
|
|
3135
|
+
/**
|
|
3136
|
+
* <p>The Amazon Resource Name (ARN) of the backup access point to describe.</p>
|
|
3137
|
+
* @public
|
|
3138
|
+
*/
|
|
3139
|
+
AccessPointArn: string | undefined;
|
|
3140
|
+
}
|
|
3141
|
+
/**
|
|
3142
|
+
* @public
|
|
3143
|
+
*/
|
|
3144
|
+
export interface DescribeBackupAccessPointResponse {
|
|
3145
|
+
/**
|
|
3146
|
+
* <p>The Amazon Resource Name (ARN) that uniquely identifies the backup access point.</p>
|
|
3147
|
+
* @public
|
|
3148
|
+
*/
|
|
3149
|
+
AccessPointArn: string | undefined;
|
|
3150
|
+
/**
|
|
3151
|
+
* <p>Metadata for the backup access point. After the backup access point reaches the <code>AVAILABLE</code>
|
|
3152
|
+
* status, this map contains <code>S3AccessPointArn</code> and <code>S3AccessPointAlias</code>, which you use with
|
|
3153
|
+
* standard Amazon S3 read APIs to access the backup data. For continuous recovery points, this map also
|
|
3154
|
+
* contains <code>AccessPointInTime</code> (in format <code>2021-11-27T03:30:27Z</code>). The access point
|
|
3155
|
+
* provides access to the content present in the backup at that specific time.</p>
|
|
3156
|
+
* @public
|
|
3157
|
+
*/
|
|
3158
|
+
AccessPointMetadata?: Record<string, string> | undefined;
|
|
3159
|
+
/**
|
|
3160
|
+
* <p>The Amazon Resource Name (ARN) of the backup vault that contains the recovery point.</p>
|
|
3161
|
+
* @public
|
|
3162
|
+
*/
|
|
3163
|
+
BackupVaultArn?: string | undefined;
|
|
3164
|
+
/**
|
|
3165
|
+
* <p>The name of the backup vault that contains the recovery point.</p>
|
|
3166
|
+
* @public
|
|
3167
|
+
*/
|
|
3168
|
+
BackupVaultName: string | undefined;
|
|
3169
|
+
/**
|
|
3170
|
+
* <p>The date and time that the backup access point was created, in Unix format and Coordinated Universal Time
|
|
3171
|
+
* (UTC). The value of <code>CreationTime</code> is accurate to milliseconds. For example, the value
|
|
3172
|
+
* 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
3173
|
+
* @public
|
|
3174
|
+
*/
|
|
3175
|
+
CreationTime: Date | undefined;
|
|
3176
|
+
/**
|
|
3177
|
+
* <p>The name of the backup access point.</p>
|
|
3178
|
+
* @public
|
|
3179
|
+
*/
|
|
3180
|
+
Name: string | undefined;
|
|
3181
|
+
/**
|
|
3182
|
+
* <p>The Amazon Resource Name (ARN) of the recovery point that the backup access point provides access to.</p>
|
|
3183
|
+
* @public
|
|
3184
|
+
*/
|
|
3185
|
+
RecoveryPointArn: string | undefined;
|
|
3186
|
+
/**
|
|
3187
|
+
* <p>The Amazon Resource Name (ARN) of the resource that was backed up, such as an Amazon S3 bucket.</p>
|
|
3188
|
+
* @public
|
|
3189
|
+
*/
|
|
3190
|
+
ResourceArn: string | undefined;
|
|
3191
|
+
/**
|
|
3192
|
+
* <p>The type of Amazon Web Services resource associated with the recovery point. For example, <code>S3</code> for
|
|
3193
|
+
* Amazon Simple Storage Service.</p>
|
|
3194
|
+
* @public
|
|
3195
|
+
*/
|
|
3196
|
+
ResourceType: string | undefined;
|
|
3197
|
+
/**
|
|
3198
|
+
* <p>The current status of the backup access point.</p>
|
|
3199
|
+
* @public
|
|
3200
|
+
*/
|
|
3201
|
+
Status: AccessPointStatus | undefined;
|
|
3202
|
+
/**
|
|
3203
|
+
* <p>A message that provides additional detail about the status of the backup access point, such as the reason a
|
|
3204
|
+
* creation or deletion attempt failed.</p>
|
|
3205
|
+
* @public
|
|
3206
|
+
*/
|
|
3207
|
+
StatusMessage?: string | undefined;
|
|
3208
|
+
}
|
|
2993
3209
|
/**
|
|
2994
3210
|
* @public
|
|
2995
3211
|
*/
|
|
@@ -5560,6 +5776,121 @@ export interface GetTieringConfigurationOutput {
|
|
|
5560
5776
|
*/
|
|
5561
5777
|
TieringConfiguration?: TieringConfiguration | undefined;
|
|
5562
5778
|
}
|
|
5779
|
+
/**
|
|
5780
|
+
* @public
|
|
5781
|
+
*/
|
|
5782
|
+
export interface ListBackupAccessPointsRequest {
|
|
5783
|
+
/**
|
|
5784
|
+
* <p>The maximum number of items to be returned.</p>
|
|
5785
|
+
* @public
|
|
5786
|
+
*/
|
|
5787
|
+
MaxResults?: number | undefined;
|
|
5788
|
+
/**
|
|
5789
|
+
* <p>The next item following a partial list of returned items. For example, if a request is made to return
|
|
5790
|
+
* <code>MaxResults</code> number of items, <code>NextToken</code> allows you to return more items in your list
|
|
5791
|
+
* starting at the location pointed to by the next token.</p>
|
|
5792
|
+
* @public
|
|
5793
|
+
*/
|
|
5794
|
+
NextToken?: string | undefined;
|
|
5795
|
+
}
|
|
5796
|
+
/**
|
|
5797
|
+
* @public
|
|
5798
|
+
*/
|
|
5799
|
+
export interface ListBackupAccessPointsResponse {
|
|
5800
|
+
/**
|
|
5801
|
+
* <p>A list of backup access points, each containing metadata such as its name, ARN, status, and associated
|
|
5802
|
+
* recovery point.</p>
|
|
5803
|
+
* @public
|
|
5804
|
+
*/
|
|
5805
|
+
BackupAccessPoints: ListAccessPointsMember[] | undefined;
|
|
5806
|
+
/**
|
|
5807
|
+
* <p>The next item following a partial list of returned items. For example, if a request is made to return
|
|
5808
|
+
* <code>MaxResults</code> number of items, <code>NextToken</code> allows you to return more items in your list
|
|
5809
|
+
* starting at the location pointed to by the next token.</p>
|
|
5810
|
+
* @public
|
|
5811
|
+
*/
|
|
5812
|
+
NextToken?: string | undefined;
|
|
5813
|
+
}
|
|
5814
|
+
/**
|
|
5815
|
+
* @public
|
|
5816
|
+
*/
|
|
5817
|
+
export interface ListBackupAccessPointsByRecoveryPointRequest {
|
|
5818
|
+
/**
|
|
5819
|
+
* <p>The maximum number of items to be returned.</p>
|
|
5820
|
+
* @public
|
|
5821
|
+
*/
|
|
5822
|
+
MaxResults?: number | undefined;
|
|
5823
|
+
/**
|
|
5824
|
+
* <p>The next item following a partial list of returned items. For example, if a request is made to return
|
|
5825
|
+
* <code>MaxResults</code> number of items, <code>NextToken</code> allows you to return more items in your list
|
|
5826
|
+
* starting at the location pointed to by the next token.</p>
|
|
5827
|
+
* @public
|
|
5828
|
+
*/
|
|
5829
|
+
NextToken?: string | undefined;
|
|
5830
|
+
/**
|
|
5831
|
+
* <p>The Amazon Resource Name (ARN) of the recovery point whose backup access points you want to list.</p>
|
|
5832
|
+
* @public
|
|
5833
|
+
*/
|
|
5834
|
+
RecoveryPointArn: string | undefined;
|
|
5835
|
+
}
|
|
5836
|
+
/**
|
|
5837
|
+
* @public
|
|
5838
|
+
*/
|
|
5839
|
+
export interface ListBackupAccessPointsByRecoveryPointResponse {
|
|
5840
|
+
/**
|
|
5841
|
+
* <p>A list of backup access points, each containing metadata such as its name, ARN, status, and associated
|
|
5842
|
+
* recovery point.</p>
|
|
5843
|
+
* @public
|
|
5844
|
+
*/
|
|
5845
|
+
BackupAccessPoints: ListAccessPointsMember[] | undefined;
|
|
5846
|
+
/**
|
|
5847
|
+
* <p>The next item following a partial list of returned items. For example, if a request is made to return
|
|
5848
|
+
* <code>MaxResults</code> number of items, <code>NextToken</code> allows you to return more items in your list
|
|
5849
|
+
* starting at the location pointed to by the next token.</p>
|
|
5850
|
+
* @public
|
|
5851
|
+
*/
|
|
5852
|
+
NextToken?: string | undefined;
|
|
5853
|
+
}
|
|
5854
|
+
/**
|
|
5855
|
+
* @public
|
|
5856
|
+
*/
|
|
5857
|
+
export interface ListBackupAccessPointsByResourceRequest {
|
|
5858
|
+
/**
|
|
5859
|
+
* <p>The maximum number of items to be returned.</p>
|
|
5860
|
+
* @public
|
|
5861
|
+
*/
|
|
5862
|
+
MaxResults?: number | undefined;
|
|
5863
|
+
/**
|
|
5864
|
+
* <p>The next item following a partial list of returned items. For example, if a request is made to return
|
|
5865
|
+
* <code>MaxResults</code> number of items, <code>NextToken</code> allows you to return more items in your list
|
|
5866
|
+
* starting at the location pointed to by the next token.</p>
|
|
5867
|
+
* @public
|
|
5868
|
+
*/
|
|
5869
|
+
NextToken?: string | undefined;
|
|
5870
|
+
/**
|
|
5871
|
+
* <p>The Amazon Resource Name (ARN) of the resource whose backup access points you want to list.</p>
|
|
5872
|
+
* @public
|
|
5873
|
+
*/
|
|
5874
|
+
ResourceArn: string | undefined;
|
|
5875
|
+
}
|
|
5876
|
+
/**
|
|
5877
|
+
* @public
|
|
5878
|
+
*/
|
|
5879
|
+
export interface ListBackupAccessPointsByResourceResponse {
|
|
5880
|
+
/**
|
|
5881
|
+
* <p>A list of backup access points, each containing metadata such as its name, ARN, status, and associated
|
|
5882
|
+
* recovery point.</p>
|
|
5883
|
+
* @public
|
|
5884
|
+
*/
|
|
5885
|
+
BackupAccessPoints: ListAccessPointsMember[] | undefined;
|
|
5886
|
+
/**
|
|
5887
|
+
* <p>The next item following a partial list of returned items. For example, if a request is made to return
|
|
5888
|
+
* <code>MaxResults</code> number of items, <code>NextToken</code> allows you to return more items in your list
|
|
5889
|
+
* starting at the location pointed to by the next token.</p>
|
|
5890
|
+
* @public
|
|
5891
|
+
*/
|
|
5892
|
+
NextToken?: string | undefined;
|
|
5893
|
+
}
|
|
5563
5894
|
/**
|
|
5564
5895
|
* @public
|
|
5565
5896
|
*/
|
|
@@ -7327,7 +7658,8 @@ export interface ListRecoveryPointsByResourceInput {
|
|
|
7327
7658
|
* set to <code>TRUE</code>, the response will contain recovery points associated
|
|
7328
7659
|
* with the selected resources that are managed by Backup.</p>
|
|
7329
7660
|
* <p>If this is set to <code>FALSE</code>, the response will contain all
|
|
7330
|
-
* recovery points associated with the selected resource
|
|
7661
|
+
* recovery points associated with the selected resource, except for EBS
|
|
7662
|
+
* snapshots copied within the same Region and account.</p>
|
|
7331
7663
|
* <p>Type: Boolean</p>
|
|
7332
7664
|
* @public
|
|
7333
7665
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBackupAccessPointsByRecoveryPointCommandInput, ListBackupAccessPointsByRecoveryPointCommandOutput } from "../commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
3
|
+
import type { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBackupAccessPointsByRecoveryPoint: (config: BackupPaginationConfiguration, input: ListBackupAccessPointsByRecoveryPointCommandInput, ...rest: any[]) => Paginator<ListBackupAccessPointsByRecoveryPointCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBackupAccessPointsByResourceCommandInput, ListBackupAccessPointsByResourceCommandOutput } from "../commands/ListBackupAccessPointsByResourceCommand";
|
|
3
|
+
import type { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBackupAccessPointsByResource: (config: BackupPaginationConfiguration, input: ListBackupAccessPointsByResourceCommandInput, ...rest: any[]) => Paginator<ListBackupAccessPointsByResourceCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBackupAccessPointsCommandInput, ListBackupAccessPointsCommandOutput } from "../commands/ListBackupAccessPointsCommand";
|
|
3
|
+
import type { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBackupAccessPoints: (config: BackupPaginationConfiguration, input: ListBackupAccessPointsCommandInput, ...rest: any[]) => Paginator<ListBackupAccessPointsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListBackupAccessPointsPaginator";
|
|
3
|
+
export * from "./ListBackupAccessPointsByRecoveryPointPaginator";
|
|
4
|
+
export * from "./ListBackupAccessPointsByResourcePaginator";
|
|
2
5
|
export * from "./ListBackupJobsPaginator";
|
|
3
6
|
export * from "./ListBackupJobSummariesPaginator";
|
|
4
7
|
export * from "./ListBackupPlansPaginator";
|
|
@@ -42,6 +42,8 @@ export declare var ControlScope$: StaticStructureSchema;
|
|
|
42
42
|
export declare var CopyAction$: StaticStructureSchema;
|
|
43
43
|
export declare var CopyJob$: StaticStructureSchema;
|
|
44
44
|
export declare var CopyJobSummary$: StaticStructureSchema;
|
|
45
|
+
export declare var CreateBackupAccessPointRequest$: StaticStructureSchema;
|
|
46
|
+
export declare var CreateBackupAccessPointResponse$: StaticStructureSchema;
|
|
45
47
|
export declare var CreateBackupPlanInput$: StaticStructureSchema;
|
|
46
48
|
export declare var CreateBackupPlanOutput$: StaticStructureSchema;
|
|
47
49
|
export declare var CreateBackupSelectionInput$: StaticStructureSchema;
|
|
@@ -65,6 +67,7 @@ export declare var CreateRestoreTestingSelectionOutput$: StaticStructureSchema;
|
|
|
65
67
|
export declare var CreateTieringConfigurationInput$: StaticStructureSchema;
|
|
66
68
|
export declare var CreateTieringConfigurationOutput$: StaticStructureSchema;
|
|
67
69
|
export declare var DateRange$: StaticStructureSchema;
|
|
70
|
+
export declare var DeleteBackupAccessPointInput$: StaticStructureSchema;
|
|
68
71
|
export declare var DeleteBackupPlanInput$: StaticStructureSchema;
|
|
69
72
|
export declare var DeleteBackupPlanOutput$: StaticStructureSchema;
|
|
70
73
|
export declare var DeleteBackupSelectionInput$: StaticStructureSchema;
|
|
@@ -79,6 +82,8 @@ export declare var DeleteRestoreTestingPlanInput$: StaticStructureSchema;
|
|
|
79
82
|
export declare var DeleteRestoreTestingSelectionInput$: StaticStructureSchema;
|
|
80
83
|
export declare var DeleteTieringConfigurationInput$: StaticStructureSchema;
|
|
81
84
|
export declare var DeleteTieringConfigurationOutput$: StaticStructureSchema;
|
|
85
|
+
export declare var DescribeBackupAccessPointInput$: StaticStructureSchema;
|
|
86
|
+
export declare var DescribeBackupAccessPointResponse$: StaticStructureSchema;
|
|
82
87
|
export declare var DescribeBackupJobInput$: StaticStructureSchema;
|
|
83
88
|
export declare var DescribeBackupJobOutput$: StaticStructureSchema;
|
|
84
89
|
export declare var DescribeBackupVaultInput$: StaticStructureSchema;
|
|
@@ -148,6 +153,13 @@ export declare var LatestMpaApprovalTeamUpdate$: StaticStructureSchema;
|
|
|
148
153
|
export declare var LatestRevokeRequest$: StaticStructureSchema;
|
|
149
154
|
export declare var LegalHold$: StaticStructureSchema;
|
|
150
155
|
export declare var Lifecycle$: StaticStructureSchema;
|
|
156
|
+
export declare var ListAccessPointsMember$: StaticStructureSchema;
|
|
157
|
+
export declare var ListBackupAccessPointsByRecoveryPointRequest$: StaticStructureSchema;
|
|
158
|
+
export declare var ListBackupAccessPointsByRecoveryPointResponse$: StaticStructureSchema;
|
|
159
|
+
export declare var ListBackupAccessPointsByResourceRequest$: StaticStructureSchema;
|
|
160
|
+
export declare var ListBackupAccessPointsByResourceResponse$: StaticStructureSchema;
|
|
161
|
+
export declare var ListBackupAccessPointsRequest$: StaticStructureSchema;
|
|
162
|
+
export declare var ListBackupAccessPointsResponse$: StaticStructureSchema;
|
|
151
163
|
export declare var ListBackupJobsInput$: StaticStructureSchema;
|
|
152
164
|
export declare var ListBackupJobsOutput$: StaticStructureSchema;
|
|
153
165
|
export declare var ListBackupJobSummariesInput$: StaticStructureSchema;
|
|
@@ -282,6 +294,7 @@ export declare var UpdateTieringConfigurationInput$: StaticStructureSchema;
|
|
|
282
294
|
export declare var UpdateTieringConfigurationOutput$: StaticStructureSchema;
|
|
283
295
|
export declare var AssociateBackupVaultMpaApprovalTeam$: StaticOperationSchema;
|
|
284
296
|
export declare var CancelLegalHold$: StaticOperationSchema;
|
|
297
|
+
export declare var CreateBackupAccessPoint$: StaticOperationSchema;
|
|
285
298
|
export declare var CreateBackupPlan$: StaticOperationSchema;
|
|
286
299
|
export declare var CreateBackupSelection$: StaticOperationSchema;
|
|
287
300
|
export declare var CreateBackupVault$: StaticOperationSchema;
|
|
@@ -293,6 +306,7 @@ export declare var CreateRestoreAccessBackupVault$: StaticOperationSchema;
|
|
|
293
306
|
export declare var CreateRestoreTestingPlan$: StaticOperationSchema;
|
|
294
307
|
export declare var CreateRestoreTestingSelection$: StaticOperationSchema;
|
|
295
308
|
export declare var CreateTieringConfiguration$: StaticOperationSchema;
|
|
309
|
+
export declare var DeleteBackupAccessPoint$: StaticOperationSchema;
|
|
296
310
|
export declare var DeleteBackupPlan$: StaticOperationSchema;
|
|
297
311
|
export declare var DeleteBackupSelection$: StaticOperationSchema;
|
|
298
312
|
export declare var DeleteBackupVault$: StaticOperationSchema;
|
|
@@ -305,6 +319,7 @@ export declare var DeleteReportPlan$: StaticOperationSchema;
|
|
|
305
319
|
export declare var DeleteRestoreTestingPlan$: StaticOperationSchema;
|
|
306
320
|
export declare var DeleteRestoreTestingSelection$: StaticOperationSchema;
|
|
307
321
|
export declare var DeleteTieringConfiguration$: StaticOperationSchema;
|
|
322
|
+
export declare var DescribeBackupAccessPoint$: StaticOperationSchema;
|
|
308
323
|
export declare var DescribeBackupJob$: StaticOperationSchema;
|
|
309
324
|
export declare var DescribeBackupVault$: StaticOperationSchema;
|
|
310
325
|
export declare var DescribeCopyJob$: StaticOperationSchema;
|
|
@@ -337,6 +352,9 @@ export declare var GetRestoreTestingPlan$: StaticOperationSchema;
|
|
|
337
352
|
export declare var GetRestoreTestingSelection$: StaticOperationSchema;
|
|
338
353
|
export declare var GetSupportedResourceTypes$: StaticOperationSchema;
|
|
339
354
|
export declare var GetTieringConfiguration$: StaticOperationSchema;
|
|
355
|
+
export declare var ListBackupAccessPoints$: StaticOperationSchema;
|
|
356
|
+
export declare var ListBackupAccessPointsByRecoveryPoint$: StaticOperationSchema;
|
|
357
|
+
export declare var ListBackupAccessPointsByResource$: StaticOperationSchema;
|
|
340
358
|
export declare var ListBackupJobs$: StaticOperationSchema;
|
|
341
359
|
export declare var ListBackupJobSummaries$: StaticOperationSchema;
|
|
342
360
|
export declare var ListBackupPlans$: StaticOperationSchema;
|
|
@@ -12,6 +12,10 @@ import {
|
|
|
12
12
|
CancelLegalHoldCommandInput,
|
|
13
13
|
CancelLegalHoldCommandOutput,
|
|
14
14
|
} from "./commands/CancelLegalHoldCommand";
|
|
15
|
+
import {
|
|
16
|
+
CreateBackupAccessPointCommandInput,
|
|
17
|
+
CreateBackupAccessPointCommandOutput,
|
|
18
|
+
} from "./commands/CreateBackupAccessPointCommand";
|
|
15
19
|
import {
|
|
16
20
|
CreateBackupPlanCommandInput,
|
|
17
21
|
CreateBackupPlanCommandOutput,
|
|
@@ -56,6 +60,10 @@ import {
|
|
|
56
60
|
CreateTieringConfigurationCommandInput,
|
|
57
61
|
CreateTieringConfigurationCommandOutput,
|
|
58
62
|
} from "./commands/CreateTieringConfigurationCommand";
|
|
63
|
+
import {
|
|
64
|
+
DeleteBackupAccessPointCommandInput,
|
|
65
|
+
DeleteBackupAccessPointCommandOutput,
|
|
66
|
+
} from "./commands/DeleteBackupAccessPointCommand";
|
|
59
67
|
import {
|
|
60
68
|
DeleteBackupPlanCommandInput,
|
|
61
69
|
DeleteBackupPlanCommandOutput,
|
|
@@ -104,6 +112,10 @@ import {
|
|
|
104
112
|
DeleteTieringConfigurationCommandInput,
|
|
105
113
|
DeleteTieringConfigurationCommandOutput,
|
|
106
114
|
} from "./commands/DeleteTieringConfigurationCommand";
|
|
115
|
+
import {
|
|
116
|
+
DescribeBackupAccessPointCommandInput,
|
|
117
|
+
DescribeBackupAccessPointCommandOutput,
|
|
118
|
+
} from "./commands/DescribeBackupAccessPointCommand";
|
|
107
119
|
import {
|
|
108
120
|
DescribeBackupJobCommandInput,
|
|
109
121
|
DescribeBackupJobCommandOutput,
|
|
@@ -232,6 +244,18 @@ import {
|
|
|
232
244
|
GetTieringConfigurationCommandInput,
|
|
233
245
|
GetTieringConfigurationCommandOutput,
|
|
234
246
|
} from "./commands/GetTieringConfigurationCommand";
|
|
247
|
+
import {
|
|
248
|
+
ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
249
|
+
ListBackupAccessPointsByRecoveryPointCommandOutput,
|
|
250
|
+
} from "./commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
251
|
+
import {
|
|
252
|
+
ListBackupAccessPointsByResourceCommandInput,
|
|
253
|
+
ListBackupAccessPointsByResourceCommandOutput,
|
|
254
|
+
} from "./commands/ListBackupAccessPointsByResourceCommand";
|
|
255
|
+
import {
|
|
256
|
+
ListBackupAccessPointsCommandInput,
|
|
257
|
+
ListBackupAccessPointsCommandOutput,
|
|
258
|
+
} from "./commands/ListBackupAccessPointsCommand";
|
|
235
259
|
import {
|
|
236
260
|
ListBackupJobsCommandInput,
|
|
237
261
|
ListBackupJobsCommandOutput,
|
|
@@ -461,6 +485,19 @@ export interface Backup {
|
|
|
461
485
|
options: __HttpHandlerOptions,
|
|
462
486
|
cb: (err: any, data?: CancelLegalHoldCommandOutput) => void,
|
|
463
487
|
): void;
|
|
488
|
+
createBackupAccessPoint(
|
|
489
|
+
args: CreateBackupAccessPointCommandInput,
|
|
490
|
+
options?: __HttpHandlerOptions,
|
|
491
|
+
): Promise<CreateBackupAccessPointCommandOutput>;
|
|
492
|
+
createBackupAccessPoint(
|
|
493
|
+
args: CreateBackupAccessPointCommandInput,
|
|
494
|
+
cb: (err: any, data?: CreateBackupAccessPointCommandOutput) => void,
|
|
495
|
+
): void;
|
|
496
|
+
createBackupAccessPoint(
|
|
497
|
+
args: CreateBackupAccessPointCommandInput,
|
|
498
|
+
options: __HttpHandlerOptions,
|
|
499
|
+
cb: (err: any, data?: CreateBackupAccessPointCommandOutput) => void,
|
|
500
|
+
): void;
|
|
464
501
|
createBackupPlan(
|
|
465
502
|
args: CreateBackupPlanCommandInput,
|
|
466
503
|
options?: __HttpHandlerOptions,
|
|
@@ -604,6 +641,19 @@ export interface Backup {
|
|
|
604
641
|
options: __HttpHandlerOptions,
|
|
605
642
|
cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void,
|
|
606
643
|
): void;
|
|
644
|
+
deleteBackupAccessPoint(
|
|
645
|
+
args: DeleteBackupAccessPointCommandInput,
|
|
646
|
+
options?: __HttpHandlerOptions,
|
|
647
|
+
): Promise<DeleteBackupAccessPointCommandOutput>;
|
|
648
|
+
deleteBackupAccessPoint(
|
|
649
|
+
args: DeleteBackupAccessPointCommandInput,
|
|
650
|
+
cb: (err: any, data?: DeleteBackupAccessPointCommandOutput) => void,
|
|
651
|
+
): void;
|
|
652
|
+
deleteBackupAccessPoint(
|
|
653
|
+
args: DeleteBackupAccessPointCommandInput,
|
|
654
|
+
options: __HttpHandlerOptions,
|
|
655
|
+
cb: (err: any, data?: DeleteBackupAccessPointCommandOutput) => void,
|
|
656
|
+
): void;
|
|
607
657
|
deleteBackupPlan(
|
|
608
658
|
args: DeleteBackupPlanCommandInput,
|
|
609
659
|
options?: __HttpHandlerOptions,
|
|
@@ -760,6 +810,19 @@ export interface Backup {
|
|
|
760
810
|
options: __HttpHandlerOptions,
|
|
761
811
|
cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void,
|
|
762
812
|
): void;
|
|
813
|
+
describeBackupAccessPoint(
|
|
814
|
+
args: DescribeBackupAccessPointCommandInput,
|
|
815
|
+
options?: __HttpHandlerOptions,
|
|
816
|
+
): Promise<DescribeBackupAccessPointCommandOutput>;
|
|
817
|
+
describeBackupAccessPoint(
|
|
818
|
+
args: DescribeBackupAccessPointCommandInput,
|
|
819
|
+
cb: (err: any, data?: DescribeBackupAccessPointCommandOutput) => void,
|
|
820
|
+
): void;
|
|
821
|
+
describeBackupAccessPoint(
|
|
822
|
+
args: DescribeBackupAccessPointCommandInput,
|
|
823
|
+
options: __HttpHandlerOptions,
|
|
824
|
+
cb: (err: any, data?: DescribeBackupAccessPointCommandOutput) => void,
|
|
825
|
+
): void;
|
|
763
826
|
describeBackupJob(
|
|
764
827
|
args: DescribeBackupJobCommandInput,
|
|
765
828
|
options?: __HttpHandlerOptions,
|
|
@@ -1179,6 +1242,46 @@ export interface Backup {
|
|
|
1179
1242
|
options: __HttpHandlerOptions,
|
|
1180
1243
|
cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void,
|
|
1181
1244
|
): void;
|
|
1245
|
+
listBackupAccessPoints(): Promise<ListBackupAccessPointsCommandOutput>;
|
|
1246
|
+
listBackupAccessPoints(
|
|
1247
|
+
args: ListBackupAccessPointsCommandInput,
|
|
1248
|
+
options?: __HttpHandlerOptions,
|
|
1249
|
+
): Promise<ListBackupAccessPointsCommandOutput>;
|
|
1250
|
+
listBackupAccessPoints(
|
|
1251
|
+
args: ListBackupAccessPointsCommandInput,
|
|
1252
|
+
cb: (err: any, data?: ListBackupAccessPointsCommandOutput) => void,
|
|
1253
|
+
): void;
|
|
1254
|
+
listBackupAccessPoints(
|
|
1255
|
+
args: ListBackupAccessPointsCommandInput,
|
|
1256
|
+
options: __HttpHandlerOptions,
|
|
1257
|
+
cb: (err: any, data?: ListBackupAccessPointsCommandOutput) => void,
|
|
1258
|
+
): void;
|
|
1259
|
+
listBackupAccessPointsByRecoveryPoint(
|
|
1260
|
+
args: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
1261
|
+
options?: __HttpHandlerOptions,
|
|
1262
|
+
): Promise<ListBackupAccessPointsByRecoveryPointCommandOutput>;
|
|
1263
|
+
listBackupAccessPointsByRecoveryPoint(
|
|
1264
|
+
args: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
1265
|
+
cb: (err: any, data?: ListBackupAccessPointsByRecoveryPointCommandOutput) => void,
|
|
1266
|
+
): void;
|
|
1267
|
+
listBackupAccessPointsByRecoveryPoint(
|
|
1268
|
+
args: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
1269
|
+
options: __HttpHandlerOptions,
|
|
1270
|
+
cb: (err: any, data?: ListBackupAccessPointsByRecoveryPointCommandOutput) => void,
|
|
1271
|
+
): void;
|
|
1272
|
+
listBackupAccessPointsByResource(
|
|
1273
|
+
args: ListBackupAccessPointsByResourceCommandInput,
|
|
1274
|
+
options?: __HttpHandlerOptions,
|
|
1275
|
+
): Promise<ListBackupAccessPointsByResourceCommandOutput>;
|
|
1276
|
+
listBackupAccessPointsByResource(
|
|
1277
|
+
args: ListBackupAccessPointsByResourceCommandInput,
|
|
1278
|
+
cb: (err: any, data?: ListBackupAccessPointsByResourceCommandOutput) => void,
|
|
1279
|
+
): void;
|
|
1280
|
+
listBackupAccessPointsByResource(
|
|
1281
|
+
args: ListBackupAccessPointsByResourceCommandInput,
|
|
1282
|
+
options: __HttpHandlerOptions,
|
|
1283
|
+
cb: (err: any, data?: ListBackupAccessPointsByResourceCommandOutput) => void,
|
|
1284
|
+
): void;
|
|
1182
1285
|
listBackupJobs(): Promise<ListBackupJobsCommandOutput>;
|
|
1183
1286
|
listBackupJobs(
|
|
1184
1287
|
args: ListBackupJobsCommandInput,
|
|
@@ -1873,6 +1976,27 @@ export interface Backup {
|
|
|
1873
1976
|
options: __HttpHandlerOptions,
|
|
1874
1977
|
cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void,
|
|
1875
1978
|
): void;
|
|
1979
|
+
paginateListBackupAccessPoints(
|
|
1980
|
+
args?: ListBackupAccessPointsCommandInput,
|
|
1981
|
+
paginationConfig?: Pick<
|
|
1982
|
+
PaginationConfiguration,
|
|
1983
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1984
|
+
>,
|
|
1985
|
+
): Paginator<ListBackupAccessPointsCommandOutput>;
|
|
1986
|
+
paginateListBackupAccessPointsByRecoveryPoint(
|
|
1987
|
+
args: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
1988
|
+
paginationConfig?: Pick<
|
|
1989
|
+
PaginationConfiguration,
|
|
1990
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1991
|
+
>,
|
|
1992
|
+
): Paginator<ListBackupAccessPointsByRecoveryPointCommandOutput>;
|
|
1993
|
+
paginateListBackupAccessPointsByResource(
|
|
1994
|
+
args: ListBackupAccessPointsByResourceCommandInput,
|
|
1995
|
+
paginationConfig?: Pick<
|
|
1996
|
+
PaginationConfiguration,
|
|
1997
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1998
|
+
>,
|
|
1999
|
+
): Paginator<ListBackupAccessPointsByResourceCommandOutput>;
|
|
1876
2000
|
paginateListBackupJobs(
|
|
1877
2001
|
args?: ListBackupJobsCommandInput,
|
|
1878
2002
|
paginationConfig?: Pick<
|