@aws-sdk/client-s3-control 3.325.0 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateAccessPointCommand.d.ts +7 -0
- package/dist-types/commands/CreateAccessPointForObjectLambdaCommand.d.ts +10 -0
- package/dist-types/commands/CreateBucketCommand.d.ts +7 -0
- package/dist-types/commands/CreateJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateMultiRegionAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAccessPointForObjectLambdaCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAccessPointPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAccessPointPolicyForObjectLambdaCommand.d.ts +4 -0
- package/dist-types/commands/DeleteBucketCommand.d.ts +4 -0
- package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteBucketPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteBucketReplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteBucketTaggingCommand.d.ts +4 -0
- package/dist-types/commands/DeleteJobTaggingCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMultiRegionAccessPointCommand.d.ts +6 -0
- package/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStorageLensConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStorageLensConfigurationTaggingCommand.d.ts +4 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +188 -0
- package/dist-types/commands/DescribeMultiRegionAccessPointOperationCommand.d.ts +51 -0
- package/dist-types/commands/GetAccessPointCommand.d.ts +24 -0
- package/dist-types/commands/GetAccessPointConfigurationForObjectLambdaCommand.d.ts +25 -0
- package/dist-types/commands/GetAccessPointForObjectLambdaCommand.d.ts +17 -0
- package/dist-types/commands/GetAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointPolicyForObjectLambdaCommand.d.ts +6 -0
- package/dist-types/commands/GetAccessPointPolicyStatusCommand.d.ts +8 -0
- package/dist-types/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.d.ts +8 -0
- package/dist-types/commands/GetBucketCommand.d.ts +8 -0
- package/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +56 -0
- package/dist-types/commands/GetBucketPolicyCommand.d.ts +6 -0
- package/dist-types/commands/GetBucketReplicationCommand.d.ts +70 -0
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +11 -0
- package/dist-types/commands/GetBucketVersioningCommand.d.ts +7 -0
- package/dist-types/commands/GetJobTaggingCommand.d.ts +11 -0
- package/dist-types/commands/GetMultiRegionAccessPointCommand.d.ts +24 -0
- package/dist-types/commands/GetMultiRegionAccessPointPolicyCommand.d.ts +13 -0
- package/dist-types/commands/GetMultiRegionAccessPointPolicyStatusCommand.d.ts +8 -0
- package/dist-types/commands/GetMultiRegionAccessPointRoutesCommand.d.ts +13 -0
- package/dist-types/commands/GetPublicAccessBlockCommand.d.ts +11 -0
- package/dist-types/commands/GetStorageLensConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/GetStorageLensConfigurationTaggingCommand.d.ts +11 -0
- package/dist-types/commands/ListAccessPointsCommand.d.ts +19 -0
- package/dist-types/commands/ListAccessPointsForObjectLambdaCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +25 -0
- package/dist-types/commands/ListMultiRegionAccessPointsCommand.d.ts +27 -0
- package/dist-types/commands/ListRegionalBucketsCommand.d.ts +15 -0
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +14 -0
- package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +4 -0
- package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +4 -0
- package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +4 -0
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +4 -0
- package/dist-types/commands/PutBucketReplicationCommand.d.ts +4 -0
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +4 -0
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +4 -0
- package/dist-types/commands/PutJobTaggingCommand.d.ts +4 -0
- package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +6 -0
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +4 -0
- package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +4 -0
- package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +4 -0
- package/dist-types/commands/UpdateJobPriorityCommand.d.ts +7 -0
- package/dist-types/commands/UpdateJobStatusCommand.d.ts +8 -0
- package/package.json +4 -4
|
@@ -73,6 +73,11 @@ export interface CreateAccessPointCommandOutput extends CreateAccessPointResult,
|
|
|
73
73
|
* };
|
|
74
74
|
* const command = new CreateAccessPointCommand(input);
|
|
75
75
|
* const response = await client.send(command);
|
|
76
|
+
* // { // CreateAccessPointResult
|
|
77
|
+
* // AccessPointArn: "STRING_VALUE",
|
|
78
|
+
* // Alias: "STRING_VALUE",
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
76
81
|
* ```
|
|
77
82
|
*
|
|
78
83
|
* @param CreateAccessPointCommandInput - {@link CreateAccessPointCommandInput}
|
|
@@ -81,6 +86,8 @@ export interface CreateAccessPointCommandOutput extends CreateAccessPointResult,
|
|
|
81
86
|
* @see {@link CreateAccessPointCommandOutput} for command's `response` shape.
|
|
82
87
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
83
88
|
*
|
|
89
|
+
* @throws {@link S3ControlServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
84
91
|
*
|
|
85
92
|
*/
|
|
86
93
|
export declare class CreateAccessPointCommand extends $Command<CreateAccessPointCommandInput, CreateAccessPointCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -72,6 +72,14 @@ export interface CreateAccessPointForObjectLambdaCommandOutput extends CreateAcc
|
|
|
72
72
|
* };
|
|
73
73
|
* const command = new CreateAccessPointForObjectLambdaCommand(input);
|
|
74
74
|
* const response = await client.send(command);
|
|
75
|
+
* // { // CreateAccessPointForObjectLambdaResult
|
|
76
|
+
* // ObjectLambdaAccessPointArn: "STRING_VALUE",
|
|
77
|
+
* // Alias: { // ObjectLambdaAccessPointAlias
|
|
78
|
+
* // Value: "STRING_VALUE",
|
|
79
|
+
* // Status: "PROVISIONING" || "READY",
|
|
80
|
+
* // },
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
75
83
|
* ```
|
|
76
84
|
*
|
|
77
85
|
* @param CreateAccessPointForObjectLambdaCommandInput - {@link CreateAccessPointForObjectLambdaCommandInput}
|
|
@@ -80,6 +88,8 @@ export interface CreateAccessPointForObjectLambdaCommandOutput extends CreateAcc
|
|
|
80
88
|
* @see {@link CreateAccessPointForObjectLambdaCommandOutput} for command's `response` shape.
|
|
81
89
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
82
90
|
*
|
|
91
|
+
* @throws {@link S3ControlServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
83
93
|
*
|
|
84
94
|
*/
|
|
85
95
|
export declare class CreateAccessPointForObjectLambdaCommand extends $Command<CreateAccessPointForObjectLambdaCommandInput, CreateAccessPointForObjectLambdaCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -95,6 +95,11 @@ export interface CreateBucketCommandOutput extends CreateBucketResult, __Metadat
|
|
|
95
95
|
* };
|
|
96
96
|
* const command = new CreateBucketCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
+
* // { // CreateBucketResult
|
|
99
|
+
* // Location: "STRING_VALUE",
|
|
100
|
+
* // BucketArn: "STRING_VALUE",
|
|
101
|
+
* // };
|
|
102
|
+
*
|
|
98
103
|
* ```
|
|
99
104
|
*
|
|
100
105
|
* @param CreateBucketCommandInput - {@link CreateBucketCommandInput}
|
|
@@ -111,6 +116,8 @@ export interface CreateBucketCommandOutput extends CreateBucketResult, __Metadat
|
|
|
111
116
|
* @throws {@link BucketAlreadyOwnedByYou} (client fault)
|
|
112
117
|
* <p>The Outposts bucket you tried to create already exists, and you own it. </p>
|
|
113
118
|
*
|
|
119
|
+
* @throws {@link S3ControlServiceException}
|
|
120
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
114
121
|
*
|
|
115
122
|
*/
|
|
116
123
|
export declare class CreateBucketCommand extends $Command<CreateBucketCommandInput, CreateBucketCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -221,6 +221,10 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
221
221
|
* };
|
|
222
222
|
* const command = new CreateJobCommand(input);
|
|
223
223
|
* const response = await client.send(command);
|
|
224
|
+
* // { // CreateJobResult
|
|
225
|
+
* // JobId: "STRING_VALUE",
|
|
226
|
+
* // };
|
|
227
|
+
*
|
|
224
228
|
* ```
|
|
225
229
|
*
|
|
226
230
|
* @param CreateJobCommandInput - {@link CreateJobCommandInput}
|
|
@@ -241,6 +245,8 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
241
245
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
242
246
|
* <p></p>
|
|
243
247
|
*
|
|
248
|
+
* @throws {@link S3ControlServiceException}
|
|
249
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
244
250
|
*
|
|
245
251
|
*/
|
|
246
252
|
export declare class CreateJobCommand extends $Command<CreateJobCommandInput, CreateJobCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -79,6 +79,10 @@ export interface CreateMultiRegionAccessPointCommandOutput extends CreateMultiRe
|
|
|
79
79
|
* };
|
|
80
80
|
* const command = new CreateMultiRegionAccessPointCommand(input);
|
|
81
81
|
* const response = await client.send(command);
|
|
82
|
+
* // { // CreateMultiRegionAccessPointResult
|
|
83
|
+
* // RequestTokenARN: "STRING_VALUE",
|
|
84
|
+
* // };
|
|
85
|
+
*
|
|
82
86
|
* ```
|
|
83
87
|
*
|
|
84
88
|
* @param CreateMultiRegionAccessPointCommandInput - {@link CreateMultiRegionAccessPointCommandInput}
|
|
@@ -87,6 +91,8 @@ export interface CreateMultiRegionAccessPointCommandOutput extends CreateMultiRe
|
|
|
87
91
|
* @see {@link CreateMultiRegionAccessPointCommandOutput} for command's `response` shape.
|
|
88
92
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
89
93
|
*
|
|
94
|
+
* @throws {@link S3ControlServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
90
96
|
*
|
|
91
97
|
*/
|
|
92
98
|
export declare class CreateMultiRegionAccessPointCommand extends $Command<CreateMultiRegionAccessPointCommandInput, CreateMultiRegionAccessPointCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -51,6 +51,8 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new DeleteAccessPointCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // {};
|
|
55
|
+
*
|
|
54
56
|
* ```
|
|
55
57
|
*
|
|
56
58
|
* @param DeleteAccessPointCommandInput - {@link DeleteAccessPointCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {
|
|
|
59
61
|
* @see {@link DeleteAccessPointCommandOutput} for command's `response` shape.
|
|
60
62
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link S3ControlServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteAccessPointCommand extends $Command<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -51,6 +51,8 @@ export interface DeleteAccessPointForObjectLambdaCommandOutput extends __Metadat
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new DeleteAccessPointForObjectLambdaCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // {};
|
|
55
|
+
*
|
|
54
56
|
* ```
|
|
55
57
|
*
|
|
56
58
|
* @param DeleteAccessPointForObjectLambdaCommandInput - {@link DeleteAccessPointForObjectLambdaCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteAccessPointForObjectLambdaCommandOutput extends __Metadat
|
|
|
59
61
|
* @see {@link DeleteAccessPointForObjectLambdaCommandOutput} for command's `response` shape.
|
|
60
62
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link S3ControlServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteAccessPointForObjectLambdaCommand extends $Command<DeleteAccessPointForObjectLambdaCommandInput, DeleteAccessPointForObjectLambdaCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -47,6 +47,8 @@ export interface DeleteAccessPointPolicyCommandOutput extends __MetadataBearer {
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new DeleteAccessPointPolicyCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
50
52
|
* ```
|
|
51
53
|
*
|
|
52
54
|
* @param DeleteAccessPointPolicyCommandInput - {@link DeleteAccessPointPolicyCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteAccessPointPolicyCommandOutput extends __MetadataBearer {
|
|
|
55
57
|
* @see {@link DeleteAccessPointPolicyCommandOutput} for command's `response` shape.
|
|
56
58
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link S3ControlServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteAccessPointPolicyCommand extends $Command<DeleteAccessPointPolicyCommandInput, DeleteAccessPointPolicyCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -46,6 +46,8 @@ export interface DeleteAccessPointPolicyForObjectLambdaCommandOutput extends __M
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new DeleteAccessPointPolicyForObjectLambdaCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // {};
|
|
50
|
+
*
|
|
49
51
|
* ```
|
|
50
52
|
*
|
|
51
53
|
* @param DeleteAccessPointPolicyForObjectLambdaCommandInput - {@link DeleteAccessPointPolicyForObjectLambdaCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteAccessPointPolicyForObjectLambdaCommandOutput extends __M
|
|
|
54
56
|
* @see {@link DeleteAccessPointPolicyForObjectLambdaCommandOutput} for command's `response` shape.
|
|
55
57
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link S3ControlServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteAccessPointPolicyForObjectLambdaCommand extends $Command<DeleteAccessPointPolicyForObjectLambdaCommandInput, DeleteAccessPointPolicyForObjectLambdaCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -59,6 +59,8 @@ export interface DeleteBucketCommandOutput extends __MetadataBearer {
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new DeleteBucketCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // {};
|
|
63
|
+
*
|
|
62
64
|
* ```
|
|
63
65
|
*
|
|
64
66
|
* @param DeleteBucketCommandInput - {@link DeleteBucketCommandInput}
|
|
@@ -67,6 +69,8 @@ export interface DeleteBucketCommandOutput extends __MetadataBearer {
|
|
|
67
69
|
* @see {@link DeleteBucketCommandOutput} for command's `response` shape.
|
|
68
70
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
69
71
|
*
|
|
72
|
+
* @throws {@link S3ControlServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
70
74
|
*
|
|
71
75
|
*/
|
|
72
76
|
export declare class DeleteBucketCommand extends $Command<DeleteBucketCommandInput, DeleteBucketCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -60,6 +60,8 @@ export interface DeleteBucketLifecycleConfigurationCommandOutput extends __Metad
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new DeleteBucketLifecycleConfigurationCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // {};
|
|
64
|
+
*
|
|
63
65
|
* ```
|
|
64
66
|
*
|
|
65
67
|
* @param DeleteBucketLifecycleConfigurationCommandInput - {@link DeleteBucketLifecycleConfigurationCommandInput}
|
|
@@ -68,6 +70,8 @@ export interface DeleteBucketLifecycleConfigurationCommandOutput extends __Metad
|
|
|
68
70
|
* @see {@link DeleteBucketLifecycleConfigurationCommandOutput} for command's `response` shape.
|
|
69
71
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
70
72
|
*
|
|
73
|
+
* @throws {@link S3ControlServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
71
75
|
*
|
|
72
76
|
*/
|
|
73
77
|
export declare class DeleteBucketLifecycleConfigurationCommand extends $Command<DeleteBucketLifecycleConfigurationCommandInput, DeleteBucketLifecycleConfigurationCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -67,6 +67,8 @@ export interface DeleteBucketPolicyCommandOutput extends __MetadataBearer {
|
|
|
67
67
|
* };
|
|
68
68
|
* const command = new DeleteBucketPolicyCommand(input);
|
|
69
69
|
* const response = await client.send(command);
|
|
70
|
+
* // {};
|
|
71
|
+
*
|
|
70
72
|
* ```
|
|
71
73
|
*
|
|
72
74
|
* @param DeleteBucketPolicyCommandInput - {@link DeleteBucketPolicyCommandInput}
|
|
@@ -75,6 +77,8 @@ export interface DeleteBucketPolicyCommandOutput extends __MetadataBearer {
|
|
|
75
77
|
* @see {@link DeleteBucketPolicyCommandOutput} for command's `response` shape.
|
|
76
78
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
77
79
|
*
|
|
80
|
+
* @throws {@link S3ControlServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
78
82
|
*
|
|
79
83
|
*/
|
|
80
84
|
export declare class DeleteBucketPolicyCommand extends $Command<DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -66,6 +66,8 @@ export interface DeleteBucketReplicationCommandOutput extends __MetadataBearer {
|
|
|
66
66
|
* };
|
|
67
67
|
* const command = new DeleteBucketReplicationCommand(input);
|
|
68
68
|
* const response = await client.send(command);
|
|
69
|
+
* // {};
|
|
70
|
+
*
|
|
69
71
|
* ```
|
|
70
72
|
*
|
|
71
73
|
* @param DeleteBucketReplicationCommandInput - {@link DeleteBucketReplicationCommandInput}
|
|
@@ -74,6 +76,8 @@ export interface DeleteBucketReplicationCommandOutput extends __MetadataBearer {
|
|
|
74
76
|
* @see {@link DeleteBucketReplicationCommandOutput} for command's `response` shape.
|
|
75
77
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
76
78
|
*
|
|
79
|
+
* @throws {@link S3ControlServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
77
81
|
*
|
|
78
82
|
*/
|
|
79
83
|
export declare class DeleteBucketReplicationCommand extends $Command<DeleteBucketReplicationCommandInput, DeleteBucketReplicationCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -54,6 +54,8 @@ export interface DeleteBucketTaggingCommandOutput extends __MetadataBearer {
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new DeleteBucketTaggingCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // {};
|
|
58
|
+
*
|
|
57
59
|
* ```
|
|
58
60
|
*
|
|
59
61
|
* @param DeleteBucketTaggingCommandInput - {@link DeleteBucketTaggingCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface DeleteBucketTaggingCommandOutput extends __MetadataBearer {
|
|
|
62
64
|
* @see {@link DeleteBucketTaggingCommandOutput} for command's `response` shape.
|
|
63
65
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link S3ControlServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class DeleteBucketTaggingCommand extends $Command<DeleteBucketTaggingCommandInput, DeleteBucketTaggingCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -56,6 +56,8 @@ export interface DeleteJobTaggingCommandOutput extends DeleteJobTaggingResult, _
|
|
|
56
56
|
* };
|
|
57
57
|
* const command = new DeleteJobTaggingCommand(input);
|
|
58
58
|
* const response = await client.send(command);
|
|
59
|
+
* // {};
|
|
60
|
+
*
|
|
59
61
|
* ```
|
|
60
62
|
*
|
|
61
63
|
* @param DeleteJobTaggingCommandInput - {@link DeleteJobTaggingCommandInput}
|
|
@@ -73,6 +75,8 @@ export interface DeleteJobTaggingCommandOutput extends DeleteJobTaggingResult, _
|
|
|
73
75
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
74
76
|
* <p></p>
|
|
75
77
|
*
|
|
78
|
+
* @throws {@link S3ControlServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
76
80
|
*
|
|
77
81
|
*/
|
|
78
82
|
export declare class DeleteJobTaggingCommand extends $Command<DeleteJobTaggingCommandInput, DeleteJobTaggingCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -66,6 +66,10 @@ export interface DeleteMultiRegionAccessPointCommandOutput extends DeleteMultiRe
|
|
|
66
66
|
* };
|
|
67
67
|
* const command = new DeleteMultiRegionAccessPointCommand(input);
|
|
68
68
|
* const response = await client.send(command);
|
|
69
|
+
* // { // DeleteMultiRegionAccessPointResult
|
|
70
|
+
* // RequestTokenARN: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
69
73
|
* ```
|
|
70
74
|
*
|
|
71
75
|
* @param DeleteMultiRegionAccessPointCommandInput - {@link DeleteMultiRegionAccessPointCommandInput}
|
|
@@ -74,6 +78,8 @@ export interface DeleteMultiRegionAccessPointCommandOutput extends DeleteMultiRe
|
|
|
74
78
|
* @see {@link DeleteMultiRegionAccessPointCommandOutput} for command's `response` shape.
|
|
75
79
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
76
80
|
*
|
|
81
|
+
* @throws {@link S3ControlServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
77
83
|
*
|
|
78
84
|
*/
|
|
79
85
|
export declare class DeleteMultiRegionAccessPointCommand extends $Command<DeleteMultiRegionAccessPointCommandInput, DeleteMultiRegionAccessPointCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -46,6 +46,8 @@ export interface DeletePublicAccessBlockCommandOutput extends __MetadataBearer {
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new DeletePublicAccessBlockCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // {};
|
|
50
|
+
*
|
|
49
51
|
* ```
|
|
50
52
|
*
|
|
51
53
|
* @param DeletePublicAccessBlockCommandInput - {@link DeletePublicAccessBlockCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeletePublicAccessBlockCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @see {@link DeletePublicAccessBlockCommandOutput} for command's `response` shape.
|
|
55
57
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link S3ControlServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeletePublicAccessBlockCommand extends $Command<DeletePublicAccessBlockCommandInput, DeletePublicAccessBlockCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -40,6 +40,8 @@ export interface DeleteStorageLensConfigurationCommandOutput extends __MetadataB
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DeleteStorageLensConfigurationCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
43
45
|
* ```
|
|
44
46
|
*
|
|
45
47
|
* @param DeleteStorageLensConfigurationCommandInput - {@link DeleteStorageLensConfigurationCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeleteStorageLensConfigurationCommandOutput extends __MetadataB
|
|
|
48
50
|
* @see {@link DeleteStorageLensConfigurationCommandOutput} for command's `response` shape.
|
|
49
51
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link S3ControlServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class DeleteStorageLensConfigurationCommand extends $Command<DeleteStorageLensConfigurationCommandInput, DeleteStorageLensConfigurationCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -41,6 +41,8 @@ export interface DeleteStorageLensConfigurationTaggingCommandOutput extends Dele
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new DeleteStorageLensConfigurationTaggingCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
44
46
|
* ```
|
|
45
47
|
*
|
|
46
48
|
* @param DeleteStorageLensConfigurationTaggingCommandInput - {@link DeleteStorageLensConfigurationTaggingCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface DeleteStorageLensConfigurationTaggingCommandOutput extends Dele
|
|
|
49
51
|
* @see {@link DeleteStorageLensConfigurationTaggingCommandOutput} for command's `response` shape.
|
|
50
52
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link S3ControlServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class DeleteStorageLensConfigurationTaggingCommand extends $Command<DeleteStorageLensConfigurationTaggingCommandInput, DeleteStorageLensConfigurationTaggingCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -57,6 +57,192 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new DescribeJobCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // DescribeJobResult
|
|
61
|
+
* // Job: { // JobDescriptor
|
|
62
|
+
* // JobId: "STRING_VALUE",
|
|
63
|
+
* // ConfirmationRequired: true || false,
|
|
64
|
+
* // Description: "STRING_VALUE",
|
|
65
|
+
* // JobArn: "STRING_VALUE",
|
|
66
|
+
* // Status: "Active" || "Cancelled" || "Cancelling" || "Complete" || "Completing" || "Failed" || "Failing" || "New" || "Paused" || "Pausing" || "Preparing" || "Ready" || "Suspended",
|
|
67
|
+
* // Manifest: { // JobManifest
|
|
68
|
+
* // Spec: { // JobManifestSpec
|
|
69
|
+
* // Format: "S3BatchOperations_CSV_20180820" || "S3InventoryReport_CSV_20161130", // required
|
|
70
|
+
* // Fields: [ // JobManifestFieldList
|
|
71
|
+
* // "Ignore" || "Bucket" || "Key" || "VersionId",
|
|
72
|
+
* // ],
|
|
73
|
+
* // },
|
|
74
|
+
* // Location: { // JobManifestLocation
|
|
75
|
+
* // ObjectArn: "STRING_VALUE", // required
|
|
76
|
+
* // ObjectVersionId: "STRING_VALUE",
|
|
77
|
+
* // ETag: "STRING_VALUE", // required
|
|
78
|
+
* // },
|
|
79
|
+
* // },
|
|
80
|
+
* // Operation: { // JobOperation
|
|
81
|
+
* // LambdaInvoke: { // LambdaInvokeOperation
|
|
82
|
+
* // FunctionArn: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // S3PutObjectCopy: { // S3CopyObjectOperation
|
|
85
|
+
* // TargetResource: "STRING_VALUE",
|
|
86
|
+
* // CannedAccessControlList: "private" || "public-read" || "public-read-write" || "aws-exec-read" || "authenticated-read" || "bucket-owner-read" || "bucket-owner-full-control",
|
|
87
|
+
* // AccessControlGrants: [ // S3GrantList
|
|
88
|
+
* // { // S3Grant
|
|
89
|
+
* // Grantee: { // S3Grantee
|
|
90
|
+
* // TypeIdentifier: "id" || "emailAddress" || "uri",
|
|
91
|
+
* // Identifier: "STRING_VALUE",
|
|
92
|
+
* // DisplayName: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // Permission: "FULL_CONTROL" || "READ" || "WRITE" || "READ_ACP" || "WRITE_ACP",
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // MetadataDirective: "COPY" || "REPLACE",
|
|
98
|
+
* // ModifiedSinceConstraint: new Date("TIMESTAMP"),
|
|
99
|
+
* // NewObjectMetadata: { // S3ObjectMetadata
|
|
100
|
+
* // CacheControl: "STRING_VALUE",
|
|
101
|
+
* // ContentDisposition: "STRING_VALUE",
|
|
102
|
+
* // ContentEncoding: "STRING_VALUE",
|
|
103
|
+
* // ContentLanguage: "STRING_VALUE",
|
|
104
|
+
* // UserMetadata: { // S3UserMetadata
|
|
105
|
+
* // "<keys>": "STRING_VALUE",
|
|
106
|
+
* // },
|
|
107
|
+
* // ContentLength: Number("long"),
|
|
108
|
+
* // ContentMD5: "STRING_VALUE",
|
|
109
|
+
* // ContentType: "STRING_VALUE",
|
|
110
|
+
* // HttpExpiresDate: new Date("TIMESTAMP"),
|
|
111
|
+
* // RequesterCharged: true || false,
|
|
112
|
+
* // SSEAlgorithm: "AES256" || "KMS",
|
|
113
|
+
* // },
|
|
114
|
+
* // NewObjectTagging: [ // S3TagSet
|
|
115
|
+
* // { // S3Tag
|
|
116
|
+
* // Key: "STRING_VALUE", // required
|
|
117
|
+
* // Value: "STRING_VALUE", // required
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
120
|
+
* // RedirectLocation: "STRING_VALUE",
|
|
121
|
+
* // RequesterPays: true || false,
|
|
122
|
+
* // StorageClass: "STANDARD" || "STANDARD_IA" || "ONEZONE_IA" || "GLACIER" || "INTELLIGENT_TIERING" || "DEEP_ARCHIVE" || "GLACIER_IR",
|
|
123
|
+
* // UnModifiedSinceConstraint: new Date("TIMESTAMP"),
|
|
124
|
+
* // SSEAwsKmsKeyId: "STRING_VALUE",
|
|
125
|
+
* // TargetKeyPrefix: "STRING_VALUE",
|
|
126
|
+
* // ObjectLockLegalHoldStatus: "OFF" || "ON",
|
|
127
|
+
* // ObjectLockMode: "COMPLIANCE" || "GOVERNANCE",
|
|
128
|
+
* // ObjectLockRetainUntilDate: new Date("TIMESTAMP"),
|
|
129
|
+
* // BucketKeyEnabled: true || false,
|
|
130
|
+
* // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256",
|
|
131
|
+
* // },
|
|
132
|
+
* // S3PutObjectAcl: { // S3SetObjectAclOperation
|
|
133
|
+
* // AccessControlPolicy: { // S3AccessControlPolicy
|
|
134
|
+
* // AccessControlList: { // S3AccessControlList
|
|
135
|
+
* // Owner: { // S3ObjectOwner
|
|
136
|
+
* // ID: "STRING_VALUE",
|
|
137
|
+
* // DisplayName: "STRING_VALUE",
|
|
138
|
+
* // },
|
|
139
|
+
* // Grants: [
|
|
140
|
+
* // {
|
|
141
|
+
* // Grantee: {
|
|
142
|
+
* // TypeIdentifier: "id" || "emailAddress" || "uri",
|
|
143
|
+
* // Identifier: "STRING_VALUE",
|
|
144
|
+
* // DisplayName: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // Permission: "FULL_CONTROL" || "READ" || "WRITE" || "READ_ACP" || "WRITE_ACP",
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // },
|
|
150
|
+
* // CannedAccessControlList: "private" || "public-read" || "public-read-write" || "aws-exec-read" || "authenticated-read" || "bucket-owner-read" || "bucket-owner-full-control",
|
|
151
|
+
* // },
|
|
152
|
+
* // },
|
|
153
|
+
* // S3PutObjectTagging: { // S3SetObjectTaggingOperation
|
|
154
|
+
* // TagSet: [
|
|
155
|
+
* // {
|
|
156
|
+
* // Key: "STRING_VALUE", // required
|
|
157
|
+
* // Value: "STRING_VALUE", // required
|
|
158
|
+
* // },
|
|
159
|
+
* // ],
|
|
160
|
+
* // },
|
|
161
|
+
* // S3DeleteObjectTagging: {},
|
|
162
|
+
* // S3InitiateRestoreObject: { // S3InitiateRestoreObjectOperation
|
|
163
|
+
* // ExpirationInDays: Number("int"),
|
|
164
|
+
* // GlacierJobTier: "BULK" || "STANDARD",
|
|
165
|
+
* // },
|
|
166
|
+
* // S3PutObjectLegalHold: { // S3SetObjectLegalHoldOperation
|
|
167
|
+
* // LegalHold: { // S3ObjectLockLegalHold
|
|
168
|
+
* // Status: "OFF" || "ON", // required
|
|
169
|
+
* // },
|
|
170
|
+
* // },
|
|
171
|
+
* // S3PutObjectRetention: { // S3SetObjectRetentionOperation
|
|
172
|
+
* // BypassGovernanceRetention: true || false,
|
|
173
|
+
* // Retention: { // S3Retention
|
|
174
|
+
* // RetainUntilDate: new Date("TIMESTAMP"),
|
|
175
|
+
* // Mode: "COMPLIANCE" || "GOVERNANCE",
|
|
176
|
+
* // },
|
|
177
|
+
* // },
|
|
178
|
+
* // S3ReplicateObject: {},
|
|
179
|
+
* // },
|
|
180
|
+
* // Priority: Number("int"),
|
|
181
|
+
* // ProgressSummary: { // JobProgressSummary
|
|
182
|
+
* // TotalNumberOfTasks: Number("long"),
|
|
183
|
+
* // NumberOfTasksSucceeded: Number("long"),
|
|
184
|
+
* // NumberOfTasksFailed: Number("long"),
|
|
185
|
+
* // Timers: { // JobTimers
|
|
186
|
+
* // ElapsedTimeInActiveSeconds: Number("long"),
|
|
187
|
+
* // },
|
|
188
|
+
* // },
|
|
189
|
+
* // StatusUpdateReason: "STRING_VALUE",
|
|
190
|
+
* // FailureReasons: [ // JobFailureList
|
|
191
|
+
* // { // JobFailure
|
|
192
|
+
* // FailureCode: "STRING_VALUE",
|
|
193
|
+
* // FailureReason: "STRING_VALUE",
|
|
194
|
+
* // },
|
|
195
|
+
* // ],
|
|
196
|
+
* // Report: { // JobReport
|
|
197
|
+
* // Bucket: "STRING_VALUE",
|
|
198
|
+
* // Format: "Report_CSV_20180820",
|
|
199
|
+
* // Enabled: true || false, // required
|
|
200
|
+
* // Prefix: "STRING_VALUE",
|
|
201
|
+
* // ReportScope: "AllTasks" || "FailedTasksOnly",
|
|
202
|
+
* // },
|
|
203
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
204
|
+
* // TerminationDate: new Date("TIMESTAMP"),
|
|
205
|
+
* // RoleArn: "STRING_VALUE",
|
|
206
|
+
* // SuspendedDate: new Date("TIMESTAMP"),
|
|
207
|
+
* // SuspendedCause: "STRING_VALUE",
|
|
208
|
+
* // ManifestGenerator: { // JobManifestGenerator Union: only one key present
|
|
209
|
+
* // S3JobManifestGenerator: { // S3JobManifestGenerator
|
|
210
|
+
* // ExpectedBucketOwner: "STRING_VALUE",
|
|
211
|
+
* // SourceBucket: "STRING_VALUE", // required
|
|
212
|
+
* // ManifestOutputLocation: { // S3ManifestOutputLocation
|
|
213
|
+
* // ExpectedManifestBucketOwner: "STRING_VALUE",
|
|
214
|
+
* // Bucket: "STRING_VALUE", // required
|
|
215
|
+
* // ManifestPrefix: "STRING_VALUE",
|
|
216
|
+
* // ManifestEncryption: { // GeneratedManifestEncryption
|
|
217
|
+
* // SSES3: {},
|
|
218
|
+
* // SSEKMS: { // SSEKMSEncryption
|
|
219
|
+
* // KeyId: "STRING_VALUE", // required
|
|
220
|
+
* // },
|
|
221
|
+
* // },
|
|
222
|
+
* // ManifestFormat: "S3InventoryReport_CSV_20211130", // required
|
|
223
|
+
* // },
|
|
224
|
+
* // Filter: { // JobManifestGeneratorFilter
|
|
225
|
+
* // EligibleForReplication: true || false,
|
|
226
|
+
* // CreatedAfter: new Date("TIMESTAMP"),
|
|
227
|
+
* // CreatedBefore: new Date("TIMESTAMP"),
|
|
228
|
+
* // ObjectReplicationStatuses: [ // ReplicationStatusFilterList
|
|
229
|
+
* // "COMPLETED" || "FAILED" || "REPLICA" || "NONE",
|
|
230
|
+
* // ],
|
|
231
|
+
* // },
|
|
232
|
+
* // EnableManifestOutput: true || false, // required
|
|
233
|
+
* // },
|
|
234
|
+
* // },
|
|
235
|
+
* // GeneratedManifestDescriptor: { // S3GeneratedManifestDescriptor
|
|
236
|
+
* // Format: "S3InventoryReport_CSV_20211130",
|
|
237
|
+
* // Location: {
|
|
238
|
+
* // ObjectArn: "STRING_VALUE", // required
|
|
239
|
+
* // ObjectVersionId: "STRING_VALUE",
|
|
240
|
+
* // ETag: "STRING_VALUE", // required
|
|
241
|
+
* // },
|
|
242
|
+
* // },
|
|
243
|
+
* // },
|
|
244
|
+
* // };
|
|
245
|
+
*
|
|
60
246
|
* ```
|
|
61
247
|
*
|
|
62
248
|
* @param DescribeJobCommandInput - {@link DescribeJobCommandInput}
|
|
@@ -77,6 +263,8 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB
|
|
|
77
263
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
78
264
|
* <p></p>
|
|
79
265
|
*
|
|
266
|
+
* @throws {@link S3ControlServiceException}
|
|
267
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
80
268
|
*
|
|
81
269
|
*/
|
|
82
270
|
export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, S3ControlClientResolvedConfig> {
|
|
@@ -57,6 +57,55 @@ export interface DescribeMultiRegionAccessPointOperationCommandOutput extends De
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new DescribeMultiRegionAccessPointOperationCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // DescribeMultiRegionAccessPointOperationResult
|
|
61
|
+
* // AsyncOperation: { // AsyncOperation
|
|
62
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
63
|
+
* // Operation: "CreateMultiRegionAccessPoint" || "DeleteMultiRegionAccessPoint" || "PutMultiRegionAccessPointPolicy",
|
|
64
|
+
* // RequestTokenARN: "STRING_VALUE",
|
|
65
|
+
* // RequestParameters: { // AsyncRequestParameters
|
|
66
|
+
* // CreateMultiRegionAccessPointRequest: { // CreateMultiRegionAccessPointInput
|
|
67
|
+
* // Name: "STRING_VALUE", // required
|
|
68
|
+
* // PublicAccessBlock: { // PublicAccessBlockConfiguration
|
|
69
|
+
* // BlockPublicAcls: true || false,
|
|
70
|
+
* // IgnorePublicAcls: true || false,
|
|
71
|
+
* // BlockPublicPolicy: true || false,
|
|
72
|
+
* // RestrictPublicBuckets: true || false,
|
|
73
|
+
* // },
|
|
74
|
+
* // Regions: [ // RegionCreationList // required
|
|
75
|
+
* // { // Region
|
|
76
|
+
* // Bucket: "STRING_VALUE", // required
|
|
77
|
+
* // BucketAccountId: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // DeleteMultiRegionAccessPointRequest: { // DeleteMultiRegionAccessPointInput
|
|
82
|
+
* // Name: "STRING_VALUE", // required
|
|
83
|
+
* // },
|
|
84
|
+
* // PutMultiRegionAccessPointPolicyRequest: { // PutMultiRegionAccessPointPolicyInput
|
|
85
|
+
* // Name: "STRING_VALUE", // required
|
|
86
|
+
* // Policy: "STRING_VALUE", // required
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // RequestStatus: "STRING_VALUE",
|
|
90
|
+
* // ResponseDetails: { // AsyncResponseDetails
|
|
91
|
+
* // MultiRegionAccessPointDetails: { // MultiRegionAccessPointsAsyncResponse
|
|
92
|
+
* // Regions: [ // MultiRegionAccessPointRegionalResponseList
|
|
93
|
+
* // { // MultiRegionAccessPointRegionalResponse
|
|
94
|
+
* // Name: "STRING_VALUE",
|
|
95
|
+
* // RequestStatus: "STRING_VALUE",
|
|
96
|
+
* // },
|
|
97
|
+
* // ],
|
|
98
|
+
* // },
|
|
99
|
+
* // ErrorDetails: { // AsyncErrorDetails
|
|
100
|
+
* // Code: "STRING_VALUE",
|
|
101
|
+
* // Message: "STRING_VALUE",
|
|
102
|
+
* // Resource: "STRING_VALUE",
|
|
103
|
+
* // RequestId: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // },
|
|
106
|
+
* // },
|
|
107
|
+
* // };
|
|
108
|
+
*
|
|
60
109
|
* ```
|
|
61
110
|
*
|
|
62
111
|
* @param DescribeMultiRegionAccessPointOperationCommandInput - {@link DescribeMultiRegionAccessPointOperationCommandInput}
|
|
@@ -65,6 +114,8 @@ export interface DescribeMultiRegionAccessPointOperationCommandOutput extends De
|
|
|
65
114
|
* @see {@link DescribeMultiRegionAccessPointOperationCommandOutput} for command's `response` shape.
|
|
66
115
|
* @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
|
|
67
116
|
*
|
|
117
|
+
* @throws {@link S3ControlServiceException}
|
|
118
|
+
* <p>Base exception class for all service exceptions from S3Control service.</p>
|
|
68
119
|
*
|
|
69
120
|
*/
|
|
70
121
|
export declare class DescribeMultiRegionAccessPointOperationCommand extends $Command<DescribeMultiRegionAccessPointOperationCommandInput, DescribeMultiRegionAccessPointOperationCommandOutput, S3ControlClientResolvedConfig> {
|