@aws-sdk/client-accessanalyzer 3.289.0 → 3.290.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/ApplyArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/CancelPolicyGenerationCommand.d.ts +13 -0
- package/dist-types/commands/CreateAccessPreviewCommand.d.ts +22 -0
- package/dist-types/commands/CreateAnalyzerCommand.d.ts +19 -0
- package/dist-types/commands/CreateArchiveRuleCommand.d.ts +22 -0
- package/dist-types/commands/DeleteAnalyzerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetAccessPreviewCommand.d.ts +16 -0
- package/dist-types/commands/GetAnalyzedResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetAnalyzerCommand.d.ts +16 -0
- package/dist-types/commands/GetArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetFindingCommand.d.ts +16 -0
- package/dist-types/commands/GetGeneratedPolicyCommand.d.ts +13 -0
- package/dist-types/commands/ListAccessPreviewFindingsCommand.d.ts +19 -0
- package/dist-types/commands/ListAccessPreviewsCommand.d.ts +16 -0
- package/dist-types/commands/ListAnalyzedResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListAnalyzersCommand.d.ts +13 -0
- package/dist-types/commands/ListArchiveRulesCommand.d.ts +13 -0
- package/dist-types/commands/ListFindingsCommand.d.ts +16 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +19 -0
- package/dist-types/commands/StartResourceScanCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFindingsCommand.d.ts +16 -0
- package/dist-types/commands/ValidatePolicyCommand.d.ts +13 -0
- package/package.json +29 -29
|
@@ -30,6 +30,22 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link ApplyArchiveRuleCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>Internal server error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource could not be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>Throttling limit exceeded error.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>Validation exception error.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ApplyArchiveRuleCommand extends $Command<ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
51
|
readonly input: ApplyArchiveRuleCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
|
|
|
29
29
|
* @see {@link CancelPolicyGenerationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>Throttling limit exceeded error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>Validation exception error.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CancelPolicyGenerationCommand extends $Command<CancelPolicyGenerationCommandInput, CancelPolicyGenerationCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
47
|
readonly input: CancelPolicyGenerationCommandInput;
|
|
@@ -30,6 +30,28 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
|
|
|
30
30
|
* @see {@link CreateAccessPreviewCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>A conflict exception error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>Internal server error.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified resource could not be found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
46
|
+
* <p>Service quote met error.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>Throttling limit exceeded error.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>Validation exception error.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
33
55
|
*/
|
|
34
56
|
export declare class CreateAccessPreviewCommand extends $Command<CreateAccessPreviewCommandInput, CreateAccessPreviewCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
57
|
readonly input: CreateAccessPreviewCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
|
|
|
29
29
|
* @see {@link CreateAnalyzerCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>A conflict exception error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>Internal server error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* <p>Service quote met error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>Throttling limit exceeded error.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>Validation exception error.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class CreateAnalyzerCommand extends $Command<CreateAnalyzerCommandInput, CreateAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
53
|
readonly input: CreateAnalyzerCommandInput;
|
|
@@ -31,6 +31,28 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link CreateArchiveRuleCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>A conflict exception error.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>Internal server error.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>The specified resource could not be found.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
47
|
+
* <p>Service quote met error.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>Throttling limit exceeded error.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p>Validation exception error.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
34
56
|
*/
|
|
35
57
|
export declare class CreateArchiveRuleCommand extends $Command<CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
36
58
|
readonly input: CreateArchiveRuleCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteAnalyzerCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>Internal server error.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified resource could not be found.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p>Throttling limit exceeded error.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>Validation exception error.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class DeleteAnalyzerCommand extends $Command<DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
36
52
|
readonly input: DeleteAnalyzerCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteArchiveRuleCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteArchiveRuleCommand extends $Command<DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteArchiveRuleCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse,
|
|
|
29
29
|
* @see {@link GetAccessPreviewCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetAccessPreviewCommand extends $Command<GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: GetAccessPreviewCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes
|
|
|
29
29
|
* @see {@link GetAnalyzedResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetAnalyzedResourceCommand extends $Command<GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: GetAnalyzedResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat
|
|
|
29
29
|
* @see {@link GetAnalyzerCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetAnalyzerCommand extends $Command<GetAnalyzerCommandInput, GetAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: GetAnalyzerCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M
|
|
|
30
30
|
* @see {@link GetArchiveRuleCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>Internal server error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource could not be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>Throttling limit exceeded error.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>Validation exception error.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class GetArchiveRuleCommand extends $Command<GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
51
|
readonly input: GetArchiveRuleCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB
|
|
|
29
29
|
* @see {@link GetFindingCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetFindingCommand extends $Command<GetFindingCommandInput, GetFindingCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: GetFindingCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo
|
|
|
30
30
|
* @see {@link GetGeneratedPolicyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>Internal server error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
40
|
+
* <p>Throttling limit exceeded error.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>Validation exception error.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class GetGeneratedPolicyCommand extends $Command<GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
48
|
readonly input: GetGeneratedPolicyCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie
|
|
|
30
30
|
* @see {@link ListAccessPreviewFindingsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>A conflict exception error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>Internal server error.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified resource could not be found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>Throttling limit exceeded error.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>Validation exception error.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class ListAccessPreviewFindingsCommand extends $Command<ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
54
|
readonly input: ListAccessPreviewFindingsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo
|
|
|
29
29
|
* @see {@link ListAccessPreviewsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListAccessPreviewsCommand extends $Command<ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: ListAccessPreviewsCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource
|
|
|
30
30
|
* @see {@link ListAnalyzedResourcesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>Internal server error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource could not be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>Throttling limit exceeded error.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>Validation exception error.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ListAnalyzedResourcesCommand extends $Command<ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
51
|
readonly input: ListAnalyzedResourcesCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met
|
|
|
29
29
|
* @see {@link ListAnalyzersCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>Throttling limit exceeded error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>Validation exception error.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListAnalyzersCommand extends $Command<ListAnalyzersCommandInput, ListAnalyzersCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
47
|
readonly input: ListAnalyzersCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse,
|
|
|
29
29
|
* @see {@link ListArchiveRulesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>Throttling limit exceeded error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>Validation exception error.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListArchiveRulesCommand extends $Command<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
47
|
readonly input: ListArchiveRulesCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
|
|
|
30
30
|
* @see {@link ListFindingsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>Internal server error.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource could not be found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>Throttling limit exceeded error.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>Validation exception error.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ListFindingsCommand extends $Command<ListFindingsCommandInput, ListFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
35
51
|
readonly input: ListFindingsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListPolicyGenerationsCommandOutput extends ListPolicyGeneration
|
|
|
29
29
|
* @see {@link ListPolicyGenerationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>Throttling limit exceeded error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>Validation exception error.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListPolicyGenerationsCommand extends $Command<ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
47
|
readonly input: ListPolicyGenerationsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface StartPolicyGenerationCommandOutput extends StartPolicyGeneratio
|
|
|
29
29
|
* @see {@link StartPolicyGenerationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>A conflict exception error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>Internal server error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* <p>Service quote met error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>Throttling limit exceeded error.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>Validation exception error.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class StartPolicyGenerationCommand extends $Command<StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
53
|
readonly input: StartPolicyGenerationCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface StartResourceScanCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link StartResourceScanCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class StartResourceScanCommand extends $Command<StartResourceScanCommandInput, StartResourceScanCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: StartResourceScanCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link UpdateArchiveRuleCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateArchiveRuleCommand extends $Command<UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateArchiveRuleCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateFindingsCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link UpdateFindingsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>Internal server error.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Throttling limit exceeded error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>Validation exception error.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateFindingsCommand extends $Command<UpdateFindingsCommandInput, UpdateFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateFindingsCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface ValidatePolicyCommandOutput extends ValidatePolicyResponse, __M
|
|
|
31
31
|
* @see {@link ValidatePolicyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>Internal server error.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p>Throttling limit exceeded error.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>Validation exception error.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class ValidatePolicyCommand extends $Command<ValidatePolicyCommandInput, ValidatePolicyCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
36
49
|
readonly input: ValidatePolicyCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-accessanalyzer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Accessanalyzer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|