@aws-sdk/client-s3-control 3.457.0 → 3.458.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.
Files changed (168) hide show
  1. package/README.md +232 -72
  2. package/dist-cjs/S3Control.js +40 -0
  3. package/dist-cjs/commands/AssociateAccessGrantsIdentityCenterCommand.js +58 -0
  4. package/dist-cjs/commands/CreateAccessGrantCommand.js +58 -0
  5. package/dist-cjs/commands/CreateAccessGrantsInstanceCommand.js +58 -0
  6. package/dist-cjs/commands/CreateAccessGrantsLocationCommand.js +58 -0
  7. package/dist-cjs/commands/DeleteAccessGrantCommand.js +58 -0
  8. package/dist-cjs/commands/DeleteAccessGrantsInstanceCommand.js +58 -0
  9. package/dist-cjs/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  10. package/dist-cjs/commands/DeleteAccessGrantsLocationCommand.js +58 -0
  11. package/dist-cjs/commands/DissociateAccessGrantsIdentityCenterCommand.js +58 -0
  12. package/dist-cjs/commands/GetAccessGrantCommand.js +58 -0
  13. package/dist-cjs/commands/GetAccessGrantsInstanceCommand.js +58 -0
  14. package/dist-cjs/commands/GetAccessGrantsInstanceForPrefixCommand.js +58 -0
  15. package/dist-cjs/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  16. package/dist-cjs/commands/GetAccessGrantsLocationCommand.js +58 -0
  17. package/dist-cjs/commands/GetDataAccessCommand.js +59 -0
  18. package/dist-cjs/commands/ListAccessGrantsCommand.js +58 -0
  19. package/dist-cjs/commands/ListAccessGrantsInstancesCommand.js +58 -0
  20. package/dist-cjs/commands/ListAccessGrantsLocationsCommand.js +58 -0
  21. package/dist-cjs/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  22. package/dist-cjs/commands/UpdateAccessGrantsLocationCommand.js +58 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/models/index.js +1 -0
  25. package/dist-cjs/models/models_0.js +32 -38
  26. package/dist-cjs/models/models_1.js +40 -0
  27. package/dist-cjs/pagination/ListAccessGrantsInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListAccessGrantsLocationsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListAccessGrantsPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +3 -0
  31. package/dist-cjs/protocols/Aws_restXml.js +1697 -156
  32. package/dist-es/S3Control.js +40 -0
  33. package/dist-es/commands/AssociateAccessGrantsIdentityCenterCommand.js +54 -0
  34. package/dist-es/commands/CreateAccessGrantCommand.js +54 -0
  35. package/dist-es/commands/CreateAccessGrantsInstanceCommand.js +54 -0
  36. package/dist-es/commands/CreateAccessGrantsLocationCommand.js +54 -0
  37. package/dist-es/commands/DeleteAccessGrantCommand.js +54 -0
  38. package/dist-es/commands/DeleteAccessGrantsInstanceCommand.js +54 -0
  39. package/dist-es/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  40. package/dist-es/commands/DeleteAccessGrantsLocationCommand.js +54 -0
  41. package/dist-es/commands/DissociateAccessGrantsIdentityCenterCommand.js +54 -0
  42. package/dist-es/commands/GetAccessGrantCommand.js +54 -0
  43. package/dist-es/commands/GetAccessGrantsInstanceCommand.js +54 -0
  44. package/dist-es/commands/GetAccessGrantsInstanceForPrefixCommand.js +54 -0
  45. package/dist-es/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  46. package/dist-es/commands/GetAccessGrantsLocationCommand.js +54 -0
  47. package/dist-es/commands/GetDataAccessCommand.js +55 -0
  48. package/dist-es/commands/ListAccessGrantsCommand.js +54 -0
  49. package/dist-es/commands/ListAccessGrantsInstancesCommand.js +54 -0
  50. package/dist-es/commands/ListAccessGrantsLocationsCommand.js +54 -0
  51. package/dist-es/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  52. package/dist-es/commands/UpdateAccessGrantsLocationCommand.js +54 -0
  53. package/dist-es/commands/index.js +20 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +28 -34
  56. package/dist-es/models/models_1.js +35 -0
  57. package/dist-es/pagination/ListAccessGrantsInstancesPaginator.js +25 -0
  58. package/dist-es/pagination/ListAccessGrantsLocationsPaginator.js +25 -0
  59. package/dist-es/pagination/ListAccessGrantsPaginator.js +25 -0
  60. package/dist-es/pagination/index.js +3 -0
  61. package/dist-es/protocols/Aws_restXml.js +1733 -233
  62. package/dist-types/S3Control.d.ts +140 -0
  63. package/dist-types/S3ControlClient.d.ts +22 -2
  64. package/dist-types/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +82 -0
  65. package/dist-types/commands/CreateAccessGrantCommand.d.ts +118 -0
  66. package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +93 -0
  67. package/dist-types/commands/CreateAccessGrantsLocationCommand.d.ts +111 -0
  68. package/dist-types/commands/DeleteAccessGrantCommand.d.ts +78 -0
  69. package/dist-types/commands/DeleteAccessGrantsInstanceCommand.d.ts +77 -0
  70. package/dist-types/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +77 -0
  71. package/dist-types/commands/DeleteAccessGrantsLocationCommand.d.ts +78 -0
  72. package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +5 -4
  73. package/dist-types/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +81 -0
  74. package/dist-types/commands/GetAccessGrantCommand.d.ts +93 -0
  75. package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +82 -0
  76. package/dist-types/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +85 -0
  77. package/dist-types/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +81 -0
  78. package/dist-types/commands/GetAccessGrantsLocationCommand.d.ts +84 -0
  79. package/dist-types/commands/GetDataAccessCommand.d.ts +94 -0
  80. package/dist-types/commands/GetStorageLensGroupCommand.d.ts +5 -4
  81. package/dist-types/commands/ListAccessGrantsCommand.d.ts +104 -0
  82. package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +89 -0
  83. package/dist-types/commands/ListAccessGrantsLocationsCommand.d.ts +91 -0
  84. package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +8 -5
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -10
  86. package/dist-types/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +83 -0
  87. package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  88. package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  89. package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  90. package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  91. package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
  92. package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
  93. package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
  94. package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
  95. package/dist-types/commands/PutJobTaggingCommand.d.ts +1 -1
  96. package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  97. package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  98. package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  99. package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  100. package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  101. package/dist-types/commands/TagResourceCommand.d.ts +12 -10
  102. package/dist-types/commands/UntagResourceCommand.d.ts +12 -8
  103. package/dist-types/commands/UpdateAccessGrantsLocationCommand.d.ts +90 -0
  104. package/dist-types/commands/UpdateJobPriorityCommand.d.ts +1 -1
  105. package/dist-types/commands/UpdateJobStatusCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +6 -5
  107. package/dist-types/commands/index.d.ts +20 -0
  108. package/dist-types/models/index.d.ts +1 -0
  109. package/dist-types/models/models_0.d.ts +1246 -854
  110. package/dist-types/models/models_1.d.ts +775 -0
  111. package/dist-types/pagination/ListAccessGrantsInstancesPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListAccessGrantsLocationsPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListAccessGrantsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/index.d.ts +3 -0
  115. package/dist-types/protocols/Aws_restXml.d.ts +180 -0
  116. package/dist-types/ts3.4/S3Control.d.ts +370 -0
  117. package/dist-types/ts3.4/S3ControlClient.d.ts +120 -0
  118. package/dist-types/ts3.4/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  119. package/dist-types/ts3.4/commands/CreateAccessGrantCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/CreateAccessGrantsInstanceCommand.d.ts +42 -0
  121. package/dist-types/ts3.4/commands/CreateAccessGrantsLocationCommand.d.ts +42 -0
  122. package/dist-types/ts3.4/commands/DeleteAccessGrantCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/DeleteAccessGrantsLocationCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  127. package/dist-types/ts3.4/commands/GetAccessGrantCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceCommand.d.ts +42 -0
  129. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +42 -0
  130. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  131. package/dist-types/ts3.4/commands/GetAccessGrantsLocationCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/GetDataAccessCommand.d.ts +35 -0
  133. package/dist-types/ts3.4/commands/ListAccessGrantsCommand.d.ts +38 -0
  134. package/dist-types/ts3.4/commands/ListAccessGrantsInstancesCommand.d.ts +42 -0
  135. package/dist-types/ts3.4/commands/ListAccessGrantsLocationsCommand.d.ts +42 -0
  136. package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +2 -4
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  139. package/dist-types/ts3.4/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  143. package/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
  144. package/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
  145. package/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
  146. package/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
  147. package/dist-types/ts3.4/commands/PutJobTaggingCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  153. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  154. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  155. package/dist-types/ts3.4/commands/UpdateAccessGrantsLocationCommand.d.ts +42 -0
  156. package/dist-types/ts3.4/commands/UpdateJobPriorityCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/UpdateJobStatusCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/UpdateStorageLensGroupCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  160. package/dist-types/ts3.4/models/index.d.ts +1 -0
  161. package/dist-types/ts3.4/models/models_0.d.ts +228 -170
  162. package/dist-types/ts3.4/models/models_1.d.ts +205 -0
  163. package/dist-types/ts3.4/pagination/ListAccessGrantsInstancesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListAccessGrantsLocationsPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListAccessGrantsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  167. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +240 -0
  168. package/package.json +3 -3
@@ -0,0 +1,93 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { CreateAccessGrantsInstanceRequest, CreateAccessGrantsInstanceResult } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateAccessGrantsInstanceCommand}.
14
+ */
15
+ export interface CreateAccessGrantsInstanceCommandInput extends CreateAccessGrantsInstanceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateAccessGrantsInstanceCommand}.
21
+ */
22
+ export interface CreateAccessGrantsInstanceCommandOutput extends CreateAccessGrantsInstanceResult, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates an S3 Access Grants instance, which serves as a logical grouping for access grants. You can create one S3 Access Grants instance per Region per account. </p>
27
+ * <dl>
28
+ * <dt>Permissions</dt>
29
+ * <dd>
30
+ * <p>You must have the <code>s3:CreateAccessGrantsInstance</code> permission to use this operation. </p>
31
+ * </dd>
32
+ * <dt>Additional Permissions</dt>
33
+ * <dd>
34
+ * <p>To associate an IAM Identity Center instance with your S3 Access Grants instance, you must also have the <code>sso:DescribeInstance</code>, <code>sso:CreateApplication</code>, <code>sso:PutApplicationGrant</code>, and <code>sso:PutApplicationAuthenticationMethod</code> permissions. </p>
35
+ * </dd>
36
+ * </dl>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { S3ControlClient, CreateAccessGrantsInstanceCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
41
+ * // const { S3ControlClient, CreateAccessGrantsInstanceCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
42
+ * const client = new S3ControlClient(config);
43
+ * const input = { // CreateAccessGrantsInstanceRequest
44
+ * AccountId: "STRING_VALUE",
45
+ * IdentityCenterArn: "STRING_VALUE",
46
+ * Tags: [ // TagList
47
+ * { // Tag
48
+ * Key: "STRING_VALUE", // required
49
+ * Value: "STRING_VALUE", // required
50
+ * },
51
+ * ],
52
+ * };
53
+ * const command = new CreateAccessGrantsInstanceCommand(input);
54
+ * const response = await client.send(command);
55
+ * // { // CreateAccessGrantsInstanceResult
56
+ * // CreatedAt: new Date("TIMESTAMP"),
57
+ * // AccessGrantsInstanceId: "STRING_VALUE",
58
+ * // AccessGrantsInstanceArn: "STRING_VALUE",
59
+ * // IdentityCenterArn: "STRING_VALUE",
60
+ * // };
61
+ *
62
+ * ```
63
+ *
64
+ * @param CreateAccessGrantsInstanceCommandInput - {@link CreateAccessGrantsInstanceCommandInput}
65
+ * @returns {@link CreateAccessGrantsInstanceCommandOutput}
66
+ * @see {@link CreateAccessGrantsInstanceCommandInput} for command's `input` shape.
67
+ * @see {@link CreateAccessGrantsInstanceCommandOutput} for command's `response` shape.
68
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
69
+ *
70
+ * @throws {@link S3ControlServiceException}
71
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
72
+ *
73
+ */
74
+ export declare class CreateAccessGrantsInstanceCommand extends $Command<CreateAccessGrantsInstanceCommandInput, CreateAccessGrantsInstanceCommandOutput, S3ControlClientResolvedConfig> {
75
+ readonly input: CreateAccessGrantsInstanceCommandInput;
76
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
+ /**
78
+ * @public
79
+ */
80
+ constructor(input: CreateAccessGrantsInstanceCommandInput);
81
+ /**
82
+ * @internal
83
+ */
84
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAccessGrantsInstanceCommandInput, CreateAccessGrantsInstanceCommandOutput>;
85
+ /**
86
+ * @internal
87
+ */
88
+ private serialize;
89
+ /**
90
+ * @internal
91
+ */
92
+ private deserialize;
93
+ }
@@ -0,0 +1,111 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { CreateAccessGrantsLocationRequest, CreateAccessGrantsLocationResult } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateAccessGrantsLocationCommand}.
14
+ */
15
+ export interface CreateAccessGrantsLocationCommandInput extends CreateAccessGrantsLocationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateAccessGrantsLocationCommand}.
21
+ */
22
+ export interface CreateAccessGrantsLocationCommandOutput extends CreateAccessGrantsLocationResult, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>The S3 data location that you would like to register in your S3 Access Grants instance. Your S3 data must be in the same Region as your S3 Access Grants instance. The location can be one of the following: </p>
27
+ * <ul>
28
+ * <li>
29
+ * <p>The default S3 location <code>s3://</code>
30
+ * </p>
31
+ * </li>
32
+ * <li>
33
+ * <p>A bucket - <code>S3://<bucket-name></code>
34
+ * </p>
35
+ * </li>
36
+ * <li>
37
+ * <p>A bucket and prefix - <code>S3://<bucket-name>/<prefix></code>
38
+ * </p>
39
+ * </li>
40
+ * </ul>
41
+ * <p>When you register a location, you must include the IAM role that has permission to manage the S3 location that you are registering. Give S3 Access Grants permission to assume this role <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-location.html">using a policy</a>. S3 Access Grants assumes this role to manage access to the location and to vend temporary credentials to grantees or client applications. </p>
42
+ * <dl>
43
+ * <dt>Permissions</dt>
44
+ * <dd>
45
+ * <p>You must have the <code>s3:CreateAccessGrantsLocation</code> permission to use this operation. </p>
46
+ * </dd>
47
+ * <dt>Additional Permissions</dt>
48
+ * <dd>
49
+ * <p>You must also have the following permission for the specified IAM role: <code>iam:PassRole</code>
50
+ * </p>
51
+ * </dd>
52
+ * </dl>
53
+ * @example
54
+ * Use a bare-bones client and the command you need to make an API call.
55
+ * ```javascript
56
+ * import { S3ControlClient, CreateAccessGrantsLocationCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
57
+ * // const { S3ControlClient, CreateAccessGrantsLocationCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
58
+ * const client = new S3ControlClient(config);
59
+ * const input = { // CreateAccessGrantsLocationRequest
60
+ * AccountId: "STRING_VALUE",
61
+ * LocationScope: "STRING_VALUE", // required
62
+ * IAMRoleArn: "STRING_VALUE", // required
63
+ * Tags: [ // TagList
64
+ * { // Tag
65
+ * Key: "STRING_VALUE", // required
66
+ * Value: "STRING_VALUE", // required
67
+ * },
68
+ * ],
69
+ * };
70
+ * const command = new CreateAccessGrantsLocationCommand(input);
71
+ * const response = await client.send(command);
72
+ * // { // CreateAccessGrantsLocationResult
73
+ * // CreatedAt: new Date("TIMESTAMP"),
74
+ * // AccessGrantsLocationId: "STRING_VALUE",
75
+ * // AccessGrantsLocationArn: "STRING_VALUE",
76
+ * // LocationScope: "STRING_VALUE",
77
+ * // IAMRoleArn: "STRING_VALUE",
78
+ * // };
79
+ *
80
+ * ```
81
+ *
82
+ * @param CreateAccessGrantsLocationCommandInput - {@link CreateAccessGrantsLocationCommandInput}
83
+ * @returns {@link CreateAccessGrantsLocationCommandOutput}
84
+ * @see {@link CreateAccessGrantsLocationCommandInput} for command's `input` shape.
85
+ * @see {@link CreateAccessGrantsLocationCommandOutput} for command's `response` shape.
86
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
87
+ *
88
+ * @throws {@link S3ControlServiceException}
89
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
90
+ *
91
+ */
92
+ export declare class CreateAccessGrantsLocationCommand extends $Command<CreateAccessGrantsLocationCommandInput, CreateAccessGrantsLocationCommandOutput, S3ControlClientResolvedConfig> {
93
+ readonly input: CreateAccessGrantsLocationCommandInput;
94
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
95
+ /**
96
+ * @public
97
+ */
98
+ constructor(input: CreateAccessGrantsLocationCommandInput);
99
+ /**
100
+ * @internal
101
+ */
102
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAccessGrantsLocationCommandInput, CreateAccessGrantsLocationCommandOutput>;
103
+ /**
104
+ * @internal
105
+ */
106
+ private serialize;
107
+ /**
108
+ * @internal
109
+ */
110
+ private deserialize;
111
+ }
@@ -0,0 +1,78 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { DeleteAccessGrantRequest } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteAccessGrantCommand}.
14
+ */
15
+ export interface DeleteAccessGrantCommandInput extends DeleteAccessGrantRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteAccessGrantCommand}.
21
+ */
22
+ export interface DeleteAccessGrantCommandOutput extends __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes the access grant from the S3 Access Grants instance. You cannot undo an access grant deletion and the grantee will no longer have access to the S3 data.</p>
27
+ * <dl>
28
+ * <dt>Permissions</dt>
29
+ * <dd>
30
+ * <p>You must have the <code>s3:DeleteAccessGrant</code> permission to use this operation. </p>
31
+ * </dd>
32
+ * </dl>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { S3ControlClient, DeleteAccessGrantCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
37
+ * // const { S3ControlClient, DeleteAccessGrantCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
38
+ * const client = new S3ControlClient(config);
39
+ * const input = { // DeleteAccessGrantRequest
40
+ * AccountId: "STRING_VALUE",
41
+ * AccessGrantId: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new DeleteAccessGrantCommand(input);
44
+ * const response = await client.send(command);
45
+ * // {};
46
+ *
47
+ * ```
48
+ *
49
+ * @param DeleteAccessGrantCommandInput - {@link DeleteAccessGrantCommandInput}
50
+ * @returns {@link DeleteAccessGrantCommandOutput}
51
+ * @see {@link DeleteAccessGrantCommandInput} for command's `input` shape.
52
+ * @see {@link DeleteAccessGrantCommandOutput} for command's `response` shape.
53
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
54
+ *
55
+ * @throws {@link S3ControlServiceException}
56
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
57
+ *
58
+ */
59
+ export declare class DeleteAccessGrantCommand extends $Command<DeleteAccessGrantCommandInput, DeleteAccessGrantCommandOutput, S3ControlClientResolvedConfig> {
60
+ readonly input: DeleteAccessGrantCommandInput;
61
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
65
+ constructor(input: DeleteAccessGrantCommandInput);
66
+ /**
67
+ * @internal
68
+ */
69
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccessGrantCommandInput, DeleteAccessGrantCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
73
+ private serialize;
74
+ /**
75
+ * @internal
76
+ */
77
+ private deserialize;
78
+ }
@@ -0,0 +1,77 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { DeleteAccessGrantsInstanceRequest } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteAccessGrantsInstanceCommand}.
14
+ */
15
+ export interface DeleteAccessGrantsInstanceCommandInput extends DeleteAccessGrantsInstanceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteAccessGrantsInstanceCommand}.
21
+ */
22
+ export interface DeleteAccessGrantsInstanceCommandOutput extends __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes your S3 Access Grants instance. You must first delete the access grants and locations before S3 Access Grants can delete the instance. See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessGrant.html">DeleteAccessGrant</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessGrantsLocation.html">DeleteAccessGrantsLocation</a>. If you have associated an IAM Identity Center instance with your S3 Access Grants instance, you must first dissassociate the Identity Center instance from the S3 Access Grants instance before you can delete the S3 Access Grants instance. See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_AssociateAccessGrantsIdentityCenter.html">AssociateAccessGrantsIdentityCenter</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DissociateAccessGrantsIdentityCenter.html">DissociateAccessGrantsIdentityCenter</a>.</p>
27
+ * <dl>
28
+ * <dt>Permissions</dt>
29
+ * <dd>
30
+ * <p>You must have the <code>s3:DeleteAccessGrantsInstance</code> permission to use this operation. </p>
31
+ * </dd>
32
+ * </dl>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { S3ControlClient, DeleteAccessGrantsInstanceCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
37
+ * // const { S3ControlClient, DeleteAccessGrantsInstanceCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
38
+ * const client = new S3ControlClient(config);
39
+ * const input = { // DeleteAccessGrantsInstanceRequest
40
+ * AccountId: "STRING_VALUE",
41
+ * };
42
+ * const command = new DeleteAccessGrantsInstanceCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeleteAccessGrantsInstanceCommandInput - {@link DeleteAccessGrantsInstanceCommandInput}
49
+ * @returns {@link DeleteAccessGrantsInstanceCommandOutput}
50
+ * @see {@link DeleteAccessGrantsInstanceCommandInput} for command's `input` shape.
51
+ * @see {@link DeleteAccessGrantsInstanceCommandOutput} for command's `response` shape.
52
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
53
+ *
54
+ * @throws {@link S3ControlServiceException}
55
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
56
+ *
57
+ */
58
+ export declare class DeleteAccessGrantsInstanceCommand extends $Command<DeleteAccessGrantsInstanceCommandInput, DeleteAccessGrantsInstanceCommandOutput, S3ControlClientResolvedConfig> {
59
+ readonly input: DeleteAccessGrantsInstanceCommandInput;
60
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
64
+ constructor(input: DeleteAccessGrantsInstanceCommandInput);
65
+ /**
66
+ * @internal
67
+ */
68
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccessGrantsInstanceCommandInput, DeleteAccessGrantsInstanceCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
72
+ private serialize;
73
+ /**
74
+ * @internal
75
+ */
76
+ private deserialize;
77
+ }
@@ -0,0 +1,77 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { DeleteAccessGrantsInstanceResourcePolicyRequest } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteAccessGrantsInstanceResourcePolicyCommand}.
14
+ */
15
+ export interface DeleteAccessGrantsInstanceResourcePolicyCommandInput extends DeleteAccessGrantsInstanceResourcePolicyRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteAccessGrantsInstanceResourcePolicyCommand}.
21
+ */
22
+ export interface DeleteAccessGrantsInstanceResourcePolicyCommandOutput extends __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes the resource policy of the S3 Access Grants instance. The resource policy is used to manage cross-account access to your S3 Access Grants instance. By deleting the resource policy, you delete any cross-account permissions to your S3 Access Grants instance. </p>
27
+ * <dl>
28
+ * <dt>Permissions</dt>
29
+ * <dd>
30
+ * <p>You must have the <code>s3:DeleteAccessGrantsInstanceResourcePolicy</code> permission to use this operation. </p>
31
+ * </dd>
32
+ * </dl>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { S3ControlClient, DeleteAccessGrantsInstanceResourcePolicyCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
37
+ * // const { S3ControlClient, DeleteAccessGrantsInstanceResourcePolicyCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
38
+ * const client = new S3ControlClient(config);
39
+ * const input = { // DeleteAccessGrantsInstanceResourcePolicyRequest
40
+ * AccountId: "STRING_VALUE",
41
+ * };
42
+ * const command = new DeleteAccessGrantsInstanceResourcePolicyCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeleteAccessGrantsInstanceResourcePolicyCommandInput - {@link DeleteAccessGrantsInstanceResourcePolicyCommandInput}
49
+ * @returns {@link DeleteAccessGrantsInstanceResourcePolicyCommandOutput}
50
+ * @see {@link DeleteAccessGrantsInstanceResourcePolicyCommandInput} for command's `input` shape.
51
+ * @see {@link DeleteAccessGrantsInstanceResourcePolicyCommandOutput} for command's `response` shape.
52
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
53
+ *
54
+ * @throws {@link S3ControlServiceException}
55
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
56
+ *
57
+ */
58
+ export declare class DeleteAccessGrantsInstanceResourcePolicyCommand extends $Command<DeleteAccessGrantsInstanceResourcePolicyCommandInput, DeleteAccessGrantsInstanceResourcePolicyCommandOutput, S3ControlClientResolvedConfig> {
59
+ readonly input: DeleteAccessGrantsInstanceResourcePolicyCommandInput;
60
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
64
+ constructor(input: DeleteAccessGrantsInstanceResourcePolicyCommandInput);
65
+ /**
66
+ * @internal
67
+ */
68
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccessGrantsInstanceResourcePolicyCommandInput, DeleteAccessGrantsInstanceResourcePolicyCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
72
+ private serialize;
73
+ /**
74
+ * @internal
75
+ */
76
+ private deserialize;
77
+ }
@@ -0,0 +1,78 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { DeleteAccessGrantsLocationRequest } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteAccessGrantsLocationCommand}.
14
+ */
15
+ export interface DeleteAccessGrantsLocationCommandInput extends DeleteAccessGrantsLocationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteAccessGrantsLocationCommand}.
21
+ */
22
+ export interface DeleteAccessGrantsLocationCommandOutput extends __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deregisters a location from your S3 Access Grants instance. You can only delete a location registration from an S3 Access Grants instance if there are no grants associated with this location. See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessGrant.html">Delete a grant</a> for information on how to delete grants. You need to have at least one registered location in your S3 Access Grants instance in order to create access grants. </p>
27
+ * <dl>
28
+ * <dt>Permissions</dt>
29
+ * <dd>
30
+ * <p>You must have the <code>s3:DeleteAccessGrantsLocation</code> permission to use this operation. </p>
31
+ * </dd>
32
+ * </dl>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { S3ControlClient, DeleteAccessGrantsLocationCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
37
+ * // const { S3ControlClient, DeleteAccessGrantsLocationCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
38
+ * const client = new S3ControlClient(config);
39
+ * const input = { // DeleteAccessGrantsLocationRequest
40
+ * AccountId: "STRING_VALUE",
41
+ * AccessGrantsLocationId: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new DeleteAccessGrantsLocationCommand(input);
44
+ * const response = await client.send(command);
45
+ * // {};
46
+ *
47
+ * ```
48
+ *
49
+ * @param DeleteAccessGrantsLocationCommandInput - {@link DeleteAccessGrantsLocationCommandInput}
50
+ * @returns {@link DeleteAccessGrantsLocationCommandOutput}
51
+ * @see {@link DeleteAccessGrantsLocationCommandInput} for command's `input` shape.
52
+ * @see {@link DeleteAccessGrantsLocationCommandOutput} for command's `response` shape.
53
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
54
+ *
55
+ * @throws {@link S3ControlServiceException}
56
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
57
+ *
58
+ */
59
+ export declare class DeleteAccessGrantsLocationCommand extends $Command<DeleteAccessGrantsLocationCommandInput, DeleteAccessGrantsLocationCommandOutput, S3ControlClientResolvedConfig> {
60
+ readonly input: DeleteAccessGrantsLocationCommandInput;
61
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
65
+ constructor(input: DeleteAccessGrantsLocationCommandInput);
66
+ /**
67
+ * @internal
68
+ */
69
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccessGrantsLocationCommandInput, DeleteAccessGrantsLocationCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
73
+ private serialize;
74
+ /**
75
+ * @internal
76
+ */
77
+ private deserialize;
78
+ }
@@ -23,12 +23,13 @@ export interface DeleteStorageLensGroupCommandOutput extends __MetadataBearer {
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Deletes an existing S3 Storage Lens group.</p>
26
+ * <p>
27
+ * Deletes an existing S3 Storage Lens group.</p>
27
28
  * <p>To use this operation, you must have the permission to perform the
28
- * <code>s3:DeleteStorageLensGroup</code> action. For more information about the required
29
- * Storage Lens Groups permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions">Setting account permissions to use S3 Storage Lens groups</a>.</p>
29
+ * <code>s3:DeleteStorageLensGroup</code> action. For more information about the required Storage Lens
30
+ * Groups permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions">Setting account permissions to use S3 Storage Lens groups</a>.</p>
30
31
  * <p>For information about Storage Lens groups errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3LensErrorCodeList">List of Amazon S3 Storage
31
- * Lens error codes</a>.</p>
32
+ * Lens error codes</a>.</p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
34
35
  * ```javascript
@@ -0,0 +1,81 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { DissociateAccessGrantsIdentityCenterRequest } from "../models/models_0";
5
+ import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DissociateAccessGrantsIdentityCenterCommand}.
14
+ */
15
+ export interface DissociateAccessGrantsIdentityCenterCommandInput extends DissociateAccessGrantsIdentityCenterRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DissociateAccessGrantsIdentityCenterCommand}.
21
+ */
22
+ export interface DissociateAccessGrantsIdentityCenterCommandOutput extends __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Dissociates the Amazon Web Services IAM Identity Center instance from the S3 Access Grants instance. </p>
27
+ * <dl>
28
+ * <dt>Permissions</dt>
29
+ * <dd>
30
+ * <p>You must have the <code>s3:DissociateAccessGrantsIdentityCenter</code> permission to use this operation. </p>
31
+ * </dd>
32
+ * <dt>Additional Permissions</dt>
33
+ * <dd>
34
+ * <p>You must have the <code>sso:DeleteApplication</code> permission to use this operation. </p>
35
+ * </dd>
36
+ * </dl>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { S3ControlClient, DissociateAccessGrantsIdentityCenterCommand } from "@aws-sdk/client-s3-control"; // ES Modules import
41
+ * // const { S3ControlClient, DissociateAccessGrantsIdentityCenterCommand } = require("@aws-sdk/client-s3-control"); // CommonJS import
42
+ * const client = new S3ControlClient(config);
43
+ * const input = { // DissociateAccessGrantsIdentityCenterRequest
44
+ * AccountId: "STRING_VALUE",
45
+ * };
46
+ * const command = new DissociateAccessGrantsIdentityCenterCommand(input);
47
+ * const response = await client.send(command);
48
+ * // {};
49
+ *
50
+ * ```
51
+ *
52
+ * @param DissociateAccessGrantsIdentityCenterCommandInput - {@link DissociateAccessGrantsIdentityCenterCommandInput}
53
+ * @returns {@link DissociateAccessGrantsIdentityCenterCommandOutput}
54
+ * @see {@link DissociateAccessGrantsIdentityCenterCommandInput} for command's `input` shape.
55
+ * @see {@link DissociateAccessGrantsIdentityCenterCommandOutput} for command's `response` shape.
56
+ * @see {@link S3ControlClientResolvedConfig | config} for S3ControlClient's `config` shape.
57
+ *
58
+ * @throws {@link S3ControlServiceException}
59
+ * <p>Base exception class for all service exceptions from S3Control service.</p>
60
+ *
61
+ */
62
+ export declare class DissociateAccessGrantsIdentityCenterCommand extends $Command<DissociateAccessGrantsIdentityCenterCommandInput, DissociateAccessGrantsIdentityCenterCommandOutput, S3ControlClientResolvedConfig> {
63
+ readonly input: DissociateAccessGrantsIdentityCenterCommandInput;
64
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
68
+ constructor(input: DissociateAccessGrantsIdentityCenterCommandInput);
69
+ /**
70
+ * @internal
71
+ */
72
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3ControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DissociateAccessGrantsIdentityCenterCommandInput, DissociateAccessGrantsIdentityCenterCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
76
+ private serialize;
77
+ /**
78
+ * @internal
79
+ */
80
+ private deserialize;
81
+ }