@aws-sdk/client-accessanalyzer 3.300.0 → 3.301.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 (29) hide show
  1. package/dist-types/commands/ApplyArchiveRuleCommand.d.ts +1 -1
  2. package/dist-types/commands/CancelPolicyGenerationCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateAccessPreviewCommand.d.ts +36 -36
  4. package/dist-types/commands/CreateAnalyzerCommand.d.ts +7 -7
  5. package/dist-types/commands/CreateArchiveRuleCommand.d.ts +4 -4
  6. package/dist-types/commands/DeleteAnalyzerCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteArchiveRuleCommand.d.ts +1 -1
  8. package/dist-types/commands/GetAccessPreviewCommand.d.ts +1 -1
  9. package/dist-types/commands/GetAnalyzedResourceCommand.d.ts +1 -1
  10. package/dist-types/commands/GetAnalyzerCommand.d.ts +1 -1
  11. package/dist-types/commands/GetArchiveRuleCommand.d.ts +1 -1
  12. package/dist-types/commands/GetFindingCommand.d.ts +1 -1
  13. package/dist-types/commands/GetGeneratedPolicyCommand.d.ts +1 -1
  14. package/dist-types/commands/ListAccessPreviewFindingsCommand.d.ts +4 -4
  15. package/dist-types/commands/ListAccessPreviewsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListAnalyzedResourcesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListAnalyzersCommand.d.ts +1 -1
  18. package/dist-types/commands/ListArchiveRulesCommand.d.ts +1 -1
  19. package/dist-types/commands/ListFindingsCommand.d.ts +5 -5
  20. package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/StartPolicyGenerationCommand.d.ts +6 -6
  23. package/dist-types/commands/StartResourceScanCommand.d.ts +1 -1
  24. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  26. package/dist-types/commands/UpdateArchiveRuleCommand.d.ts +4 -4
  27. package/dist-types/commands/UpdateFindingsCommand.d.ts +2 -2
  28. package/dist-types/commands/ValidatePolicyCommand.d.ts +1 -1
  29. package/package.json +3 -3
@@ -27,7 +27,7 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {
27
27
  * import { AccessAnalyzerClient, ApplyArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, ApplyArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // ApplyArchiveRuleRequest
31
31
  * analyzerArn: "STRING_VALUE", // required
32
32
  * ruleName: "STRING_VALUE", // required
33
33
  * clientToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
26
26
  * import { AccessAnalyzerClient, CancelPolicyGenerationCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, CancelPolicyGenerationCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // CancelPolicyGenerationRequest
30
30
  * jobId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CancelPolicyGenerationCommand(input);
@@ -27,41 +27,41 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
27
27
  * import { AccessAnalyzerClient, CreateAccessPreviewCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, CreateAccessPreviewCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // CreateAccessPreviewRequest
31
31
  * analyzerArn: "STRING_VALUE", // required
32
- * configurations: { // required
33
- * "<keys>": { // Union: only one key present
34
- * ebsSnapshot: {
35
- * userIds: [
32
+ * configurations: { // ConfigurationsMap // required
33
+ * "<keys>": { // Configuration Union: only one key present
34
+ * ebsSnapshot: { // EbsSnapshotConfiguration
35
+ * userIds: [ // EbsUserIdList
36
36
  * "STRING_VALUE",
37
37
  * ],
38
- * groups: [
38
+ * groups: [ // EbsGroupList
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * kmsKeyId: "STRING_VALUE",
42
42
  * },
43
- * ecrRepository: {
43
+ * ecrRepository: { // EcrRepositoryConfiguration
44
44
  * repositoryPolicy: "STRING_VALUE",
45
45
  * },
46
- * iamRole: {
46
+ * iamRole: { // IamRoleConfiguration
47
47
  * trustPolicy: "STRING_VALUE",
48
48
  * },
49
- * efsFileSystem: {
49
+ * efsFileSystem: { // EfsFileSystemConfiguration
50
50
  * fileSystemPolicy: "STRING_VALUE",
51
51
  * },
52
- * kmsKey: {
53
- * keyPolicies: {
52
+ * kmsKey: { // KmsKeyConfiguration
53
+ * keyPolicies: { // KmsKeyPoliciesMap
54
54
  * "<keys>": "STRING_VALUE",
55
55
  * },
56
- * grants: [
57
- * {
58
- * operations: [ // required
56
+ * grants: [ // KmsGrantConfigurationsList
57
+ * { // KmsGrantConfiguration
58
+ * operations: [ // KmsGrantOperationsList // required
59
59
  * "STRING_VALUE",
60
60
  * ],
61
61
  * granteePrincipal: "STRING_VALUE", // required
62
62
  * retiringPrincipal: "STRING_VALUE",
63
- * constraints: {
64
- * encryptionContextEquals: {
63
+ * constraints: { // KmsGrantConstraints
64
+ * encryptionContextEquals: { // KmsConstraintsMap
65
65
  * "<keys>": "STRING_VALUE",
66
66
  * },
67
67
  * encryptionContextSubset: {
@@ -72,54 +72,54 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
72
72
  * },
73
73
  * ],
74
74
  * },
75
- * rdsDbClusterSnapshot: {
76
- * attributes: {
77
- * "<keys>": { // Union: only one key present
78
- * accountIds: [
75
+ * rdsDbClusterSnapshot: { // RdsDbClusterSnapshotConfiguration
76
+ * attributes: { // RdsDbClusterSnapshotAttributesMap
77
+ * "<keys>": { // RdsDbClusterSnapshotAttributeValue Union: only one key present
78
+ * accountIds: [ // RdsDbClusterSnapshotAccountIdsList
79
79
  * "STRING_VALUE",
80
80
  * ],
81
81
  * },
82
82
  * },
83
83
  * kmsKeyId: "STRING_VALUE",
84
84
  * },
85
- * rdsDbSnapshot: {
86
- * attributes: {
87
- * "<keys>": { // Union: only one key present
88
- * accountIds: [
85
+ * rdsDbSnapshot: { // RdsDbSnapshotConfiguration
86
+ * attributes: { // RdsDbSnapshotAttributesMap
87
+ * "<keys>": { // RdsDbSnapshotAttributeValue Union: only one key present
88
+ * accountIds: [ // RdsDbSnapshotAccountIdsList
89
89
  * "STRING_VALUE",
90
90
  * ],
91
91
  * },
92
92
  * },
93
93
  * kmsKeyId: "STRING_VALUE",
94
94
  * },
95
- * secretsManagerSecret: {
95
+ * secretsManagerSecret: { // SecretsManagerSecretConfiguration
96
96
  * kmsKeyId: "STRING_VALUE",
97
97
  * secretPolicy: "STRING_VALUE",
98
98
  * },
99
- * s3Bucket: {
99
+ * s3Bucket: { // S3BucketConfiguration
100
100
  * bucketPolicy: "STRING_VALUE",
101
- * bucketAclGrants: [
102
- * {
101
+ * bucketAclGrants: [ // S3BucketAclGrantConfigurationsList
102
+ * { // S3BucketAclGrantConfiguration
103
103
  * permission: "STRING_VALUE", // required
104
- * grantee: { // Union: only one key present
104
+ * grantee: { // AclGrantee Union: only one key present
105
105
  * id: "STRING_VALUE",
106
106
  * uri: "STRING_VALUE",
107
107
  * },
108
108
  * },
109
109
  * ],
110
- * bucketPublicAccessBlock: {
110
+ * bucketPublicAccessBlock: { // S3PublicAccessBlockConfiguration
111
111
  * ignorePublicAcls: true || false, // required
112
112
  * restrictPublicBuckets: true || false, // required
113
113
  * },
114
- * accessPoints: {
115
- * "<keys>": {
114
+ * accessPoints: { // S3AccessPointConfigurationsMap
115
+ * "<keys>": { // S3AccessPointConfiguration
116
116
  * accessPointPolicy: "STRING_VALUE",
117
117
  * publicAccessBlock: {
118
118
  * ignorePublicAcls: true || false, // required
119
119
  * restrictPublicBuckets: true || false, // required
120
120
  * },
121
- * networkOrigin: { // Union: only one key present
122
- * vpcConfiguration: {
121
+ * networkOrigin: { // NetworkOriginConfiguration Union: only one key present
122
+ * vpcConfiguration: { // VpcConfiguration
123
123
  * vpcId: "STRING_VALUE", // required
124
124
  * },
125
125
  * internetConfiguration: {},
@@ -127,10 +127,10 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
127
127
  * },
128
128
  * },
129
129
  * },
130
- * snsTopic: {
130
+ * snsTopic: { // SnsTopicConfiguration
131
131
  * topicPolicy: "STRING_VALUE",
132
132
  * },
133
- * sqsQueue: {
133
+ * sqsQueue: { // SqsQueueConfiguration
134
134
  * queuePolicy: "STRING_VALUE",
135
135
  * },
136
136
  * },
@@ -26,15 +26,15 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
26
26
  * import { AccessAnalyzerClient, CreateAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, CreateAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // CreateAnalyzerRequest
30
30
  * analyzerName: "STRING_VALUE", // required
31
31
  * type: "STRING_VALUE", // required
32
- * archiveRules: [
33
- * {
32
+ * archiveRules: [ // InlineArchiveRulesList
33
+ * { // InlineArchiveRule
34
34
  * ruleName: "STRING_VALUE", // required
35
- * filter: { // required
36
- * "<keys>": {
37
- * eq: [
35
+ * filter: { // FilterCriteriaMap // required
36
+ * "<keys>": { // Criterion
37
+ * eq: [ // ValueList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * neq: [
@@ -48,7 +48,7 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
48
48
  * },
49
49
  * },
50
50
  * ],
51
- * tags: {
51
+ * tags: { // TagsMap
52
52
  * "<keys>": "STRING_VALUE",
53
53
  * },
54
54
  * clientToken: "STRING_VALUE",
@@ -28,12 +28,12 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {
28
28
  * import { AccessAnalyzerClient, CreateArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29
29
  * // const { AccessAnalyzerClient, CreateArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30
30
  * const client = new AccessAnalyzerClient(config);
31
- * const input = {
31
+ * const input = { // CreateArchiveRuleRequest
32
32
  * analyzerName: "STRING_VALUE", // required
33
33
  * ruleName: "STRING_VALUE", // required
34
- * filter: { // required
35
- * "<keys>": {
36
- * eq: [
34
+ * filter: { // FilterCriteriaMap // required
35
+ * "<keys>": { // Criterion
36
+ * eq: [ // ValueList
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * neq: [
@@ -28,7 +28,7 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {
28
28
  * import { AccessAnalyzerClient, DeleteAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29
29
  * // const { AccessAnalyzerClient, DeleteAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30
30
  * const client = new AccessAnalyzerClient(config);
31
- * const input = {
31
+ * const input = { // DeleteAnalyzerRequest
32
32
  * analyzerName: "STRING_VALUE", // required
33
33
  * clientToken: "STRING_VALUE",
34
34
  * };
@@ -26,7 +26,7 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {
26
26
  * import { AccessAnalyzerClient, DeleteArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, DeleteArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // DeleteArchiveRuleRequest
30
30
  * analyzerName: "STRING_VALUE", // required
31
31
  * ruleName: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse,
26
26
  * import { AccessAnalyzerClient, GetAccessPreviewCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, GetAccessPreviewCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // GetAccessPreviewRequest
30
30
  * accessPreviewId: "STRING_VALUE", // required
31
31
  * analyzerArn: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes
26
26
  * import { AccessAnalyzerClient, GetAnalyzedResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, GetAnalyzedResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // GetAnalyzedResourceRequest
30
30
  * analyzerArn: "STRING_VALUE", // required
31
31
  * resourceArn: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat
26
26
  * import { AccessAnalyzerClient, GetAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, GetAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // GetAnalyzerRequest
30
30
  * analyzerName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetAnalyzerCommand(input);
@@ -27,7 +27,7 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M
27
27
  * import { AccessAnalyzerClient, GetArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, GetArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // GetArchiveRuleRequest
31
31
  * analyzerName: "STRING_VALUE", // required
32
32
  * ruleName: "STRING_VALUE", // required
33
33
  * };
@@ -26,7 +26,7 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB
26
26
  * import { AccessAnalyzerClient, GetFindingCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, GetFindingCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // GetFindingRequest
30
30
  * analyzerArn: "STRING_VALUE", // required
31
31
  * id: "STRING_VALUE", // required
32
32
  * };
@@ -27,7 +27,7 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo
27
27
  * import { AccessAnalyzerClient, GetGeneratedPolicyCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, GetGeneratedPolicyCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // GetGeneratedPolicyRequest
31
31
  * jobId: "STRING_VALUE", // required
32
32
  * includeResourcePlaceholders: true || false,
33
33
  * includeServiceLevelTemplate: true || false,
@@ -27,12 +27,12 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie
27
27
  * import { AccessAnalyzerClient, ListAccessPreviewFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, ListAccessPreviewFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // ListAccessPreviewFindingsRequest
31
31
  * accessPreviewId: "STRING_VALUE", // required
32
32
  * analyzerArn: "STRING_VALUE", // required
33
- * filter: {
34
- * "<keys>": {
35
- * eq: [
33
+ * filter: { // FilterCriteriaMap
34
+ * "<keys>": { // Criterion
35
+ * eq: [ // ValueList
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * neq: [
@@ -26,7 +26,7 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo
26
26
  * import { AccessAnalyzerClient, ListAccessPreviewsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, ListAccessPreviewsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // ListAccessPreviewsRequest
30
30
  * analyzerArn: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource
27
27
  * import { AccessAnalyzerClient, ListAnalyzedResourcesCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, ListAnalyzedResourcesCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // ListAnalyzedResourcesRequest
31
31
  * analyzerArn: "STRING_VALUE", // required
32
32
  * resourceType: "STRING_VALUE",
33
33
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met
26
26
  * import { AccessAnalyzerClient, ListAnalyzersCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, ListAnalyzersCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // ListAnalyzersRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * type: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse,
26
26
  * import { AccessAnalyzerClient, ListArchiveRulesCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, ListArchiveRulesCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // ListArchiveRulesRequest
30
30
  * analyzerName: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -27,11 +27,11 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
27
27
  * import { AccessAnalyzerClient, ListFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
28
28
  * // const { AccessAnalyzerClient, ListFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
29
29
  * const client = new AccessAnalyzerClient(config);
30
- * const input = {
30
+ * const input = { // ListFindingsRequest
31
31
  * analyzerArn: "STRING_VALUE", // required
32
- * filter: {
33
- * "<keys>": {
34
- * eq: [
32
+ * filter: { // FilterCriteriaMap
33
+ * "<keys>": { // Criterion
34
+ * eq: [ // ValueList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * neq: [
@@ -43,7 +43,7 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
43
43
  * exists: true || false,
44
44
  * },
45
45
  * },
46
- * sort: {
46
+ * sort: { // SortCriteria
47
47
  * attributeName: "STRING_VALUE",
48
48
  * orderBy: "STRING_VALUE",
49
49
  * },
@@ -26,7 +26,7 @@ export interface ListPolicyGenerationsCommandOutput extends ListPolicyGeneration
26
26
  * import { AccessAnalyzerClient, ListPolicyGenerationsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, ListPolicyGenerationsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // ListPolicyGenerationsRequest
30
30
  * principalArn: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { AccessAnalyzerClient, ListTagsForResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,15 +26,15 @@ export interface StartPolicyGenerationCommandOutput extends StartPolicyGeneratio
26
26
  * import { AccessAnalyzerClient, StartPolicyGenerationCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, StartPolicyGenerationCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
30
- * policyGenerationDetails: {
29
+ * const input = { // StartPolicyGenerationRequest
30
+ * policyGenerationDetails: { // PolicyGenerationDetails
31
31
  * principalArn: "STRING_VALUE", // required
32
32
  * },
33
- * cloudTrailDetails: {
34
- * trails: [ // required
35
- * {
33
+ * cloudTrailDetails: { // CloudTrailDetails
34
+ * trails: [ // TrailList // required
35
+ * { // Trail
36
36
  * cloudTrailArn: "STRING_VALUE", // required
37
- * regions: [
37
+ * regions: [ // RegionList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * allRegions: true || false,
@@ -26,7 +26,7 @@ export interface StartResourceScanCommandOutput extends __MetadataBearer {
26
26
  * import { AccessAnalyzerClient, StartResourceScanCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, StartResourceScanCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // StartResourceScanRequest
30
30
  * analyzerArn: "STRING_VALUE", // required
31
31
  * resourceArn: "STRING_VALUE", // required
32
32
  * resourceOwnerAccount: "STRING_VALUE",
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { AccessAnalyzerClient, TagResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, TagResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagsMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { AccessAnalyzerClient, UntagResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, UntagResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,12 +26,12 @@ export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {
26
26
  * import { AccessAnalyzerClient, UpdateArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, UpdateArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // UpdateArchiveRuleRequest
30
30
  * analyzerName: "STRING_VALUE", // required
31
31
  * ruleName: "STRING_VALUE", // required
32
- * filter: { // required
33
- * "<keys>": {
34
- * eq: [
32
+ * filter: { // FilterCriteriaMap // required
33
+ * "<keys>": { // Criterion
34
+ * eq: [ // ValueList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * neq: [
@@ -26,10 +26,10 @@ export interface UpdateFindingsCommandOutput extends __MetadataBearer {
26
26
  * import { AccessAnalyzerClient, UpdateFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
27
27
  * // const { AccessAnalyzerClient, UpdateFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
28
28
  * const client = new AccessAnalyzerClient(config);
29
- * const input = {
29
+ * const input = { // UpdateFindingsRequest
30
30
  * analyzerArn: "STRING_VALUE", // required
31
31
  * status: "STRING_VALUE", // required
32
- * ids: [
32
+ * ids: [ // FindingIdList
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * resourceArn: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ValidatePolicyCommandOutput extends ValidatePolicyResponse, __M
28
28
  * import { AccessAnalyzerClient, ValidatePolicyCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29
29
  * // const { AccessAnalyzerClient, ValidatePolicyCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30
30
  * const client = new AccessAnalyzerClient(config);
31
- * const input = {
31
+ * const input = { // ValidatePolicyRequest
32
32
  * locale: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
34
34
  * nextToken: "STRING_VALUE",
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.300.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",