@aws-sdk/client-inspector 3.890.0 → 3.891.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 (38) hide show
  1. package/dist-types/commands/AddAttributesToFindingsCommand.d.ts +2 -0
  2. package/dist-types/commands/CreateAssessmentTargetCommand.d.ts +2 -0
  3. package/dist-types/commands/CreateAssessmentTemplateCommand.d.ts +2 -0
  4. package/dist-types/commands/CreateExclusionsPreviewCommand.d.ts +2 -0
  5. package/dist-types/commands/CreateResourceGroupCommand.d.ts +2 -0
  6. package/dist-types/commands/DeleteAssessmentRunCommand.d.ts +2 -0
  7. package/dist-types/commands/DeleteAssessmentTargetCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteAssessmentTemplateCommand.d.ts +2 -0
  9. package/dist-types/commands/DescribeAssessmentRunsCommand.d.ts +2 -0
  10. package/dist-types/commands/DescribeAssessmentTargetsCommand.d.ts +2 -0
  11. package/dist-types/commands/DescribeAssessmentTemplatesCommand.d.ts +2 -0
  12. package/dist-types/commands/DescribeCrossAccountAccessRoleCommand.d.ts +2 -0
  13. package/dist-types/commands/DescribeExclusionsCommand.d.ts +2 -0
  14. package/dist-types/commands/DescribeFindingsCommand.d.ts +2 -0
  15. package/dist-types/commands/DescribeResourceGroupsCommand.d.ts +2 -0
  16. package/dist-types/commands/DescribeRulesPackagesCommand.d.ts +2 -0
  17. package/dist-types/commands/GetAssessmentReportCommand.d.ts +2 -0
  18. package/dist-types/commands/GetExclusionsPreviewCommand.d.ts +2 -0
  19. package/dist-types/commands/GetTelemetryMetadataCommand.d.ts +2 -0
  20. package/dist-types/commands/ListAssessmentRunAgentsCommand.d.ts +2 -0
  21. package/dist-types/commands/ListAssessmentRunsCommand.d.ts +2 -0
  22. package/dist-types/commands/ListAssessmentTargetsCommand.d.ts +2 -0
  23. package/dist-types/commands/ListAssessmentTemplatesCommand.d.ts +2 -0
  24. package/dist-types/commands/ListEventSubscriptionsCommand.d.ts +2 -0
  25. package/dist-types/commands/ListExclusionsCommand.d.ts +2 -0
  26. package/dist-types/commands/ListFindingsCommand.d.ts +2 -0
  27. package/dist-types/commands/ListRulesPackagesCommand.d.ts +2 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  29. package/dist-types/commands/PreviewAgentsCommand.d.ts +2 -0
  30. package/dist-types/commands/RegisterCrossAccountAccessRoleCommand.d.ts +2 -0
  31. package/dist-types/commands/RemoveAttributesFromFindingsCommand.d.ts +2 -0
  32. package/dist-types/commands/SetTagsForResourceCommand.d.ts +2 -0
  33. package/dist-types/commands/StartAssessmentRunCommand.d.ts +2 -0
  34. package/dist-types/commands/StopAssessmentRunCommand.d.ts +2 -0
  35. package/dist-types/commands/SubscribeToEventCommand.d.ts +2 -0
  36. package/dist-types/commands/UnsubscribeFromEventCommand.d.ts +2 -0
  37. package/dist-types/commands/UpdateAssessmentTargetCommand.d.ts +2 -0
  38. package/package.json +10 -10
@@ -34,6 +34,8 @@ declare const AddAttributesToFindingsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, AddAttributesToFindingsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, AddAttributesToFindingsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // AddAttributesToFindingsRequest
39
41
  * findingArns: [ // AddRemoveAttributesFindingArnList // required
@@ -40,6 +40,8 @@ declare const CreateAssessmentTargetCommand_base: {
40
40
  * ```javascript
41
41
  * import { InspectorClient, CreateAssessmentTargetCommand } from "@aws-sdk/client-inspector"; // ES Modules import
42
42
  * // const { InspectorClient, CreateAssessmentTargetCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
43
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
44
+ * const config = {}; // type is InspectorClientConfig
43
45
  * const client = new InspectorClient(config);
44
46
  * const input = { // CreateAssessmentTargetRequest
45
47
  * assessmentTargetName: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const CreateAssessmentTemplateCommand_base: {
36
36
  * ```javascript
37
37
  * import { InspectorClient, CreateAssessmentTemplateCommand } from "@aws-sdk/client-inspector"; // ES Modules import
38
38
  * // const { InspectorClient, CreateAssessmentTemplateCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
39
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
40
+ * const config = {}; // type is InspectorClientConfig
39
41
  * const client = new InspectorClient(config);
40
42
  * const input = { // CreateAssessmentTemplateRequest
41
43
  * assessmentTargetArn: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const CreateExclusionsPreviewCommand_base: {
35
35
  * ```javascript
36
36
  * import { InspectorClient, CreateExclusionsPreviewCommand } from "@aws-sdk/client-inspector"; // ES Modules import
37
37
  * // const { InspectorClient, CreateExclusionsPreviewCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
38
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
39
+ * const config = {}; // type is InspectorClientConfig
38
40
  * const client = new InspectorClient(config);
39
41
  * const input = { // CreateExclusionsPreviewRequest
40
42
  * assessmentTemplateArn: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const CreateResourceGroupCommand_base: {
36
36
  * ```javascript
37
37
  * import { InspectorClient, CreateResourceGroupCommand } from "@aws-sdk/client-inspector"; // ES Modules import
38
38
  * // const { InspectorClient, CreateResourceGroupCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
39
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
40
+ * const config = {}; // type is InspectorClientConfig
39
41
  * const client = new InspectorClient(config);
40
42
  * const input = { // CreateResourceGroupRequest
41
43
  * resourceGroupTags: [ // ResourceGroupTags // required
@@ -34,6 +34,8 @@ declare const DeleteAssessmentRunCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DeleteAssessmentRunCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DeleteAssessmentRunCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DeleteAssessmentRunRequest
39
41
  * assessmentRunArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const DeleteAssessmentTargetCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DeleteAssessmentTargetCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DeleteAssessmentTargetCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DeleteAssessmentTargetRequest
39
41
  * assessmentTargetArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const DeleteAssessmentTemplateCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DeleteAssessmentTemplateCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DeleteAssessmentTemplateCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DeleteAssessmentTemplateRequest
39
41
  * assessmentTemplateArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const DescribeAssessmentRunsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DescribeAssessmentRunsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DescribeAssessmentRunsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DescribeAssessmentRunsRequest
39
41
  * assessmentRunArns: [ // BatchDescribeArnList // required
@@ -34,6 +34,8 @@ declare const DescribeAssessmentTargetsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DescribeAssessmentTargetsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DescribeAssessmentTargetsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DescribeAssessmentTargetsRequest
39
41
  * assessmentTargetArns: [ // BatchDescribeArnList // required
@@ -34,6 +34,8 @@ declare const DescribeAssessmentTemplatesCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DescribeAssessmentTemplatesCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DescribeAssessmentTemplatesCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DescribeAssessmentTemplatesRequest
39
41
  * assessmentTemplateArns: [ // BatchDescribeArnList // required
@@ -34,6 +34,8 @@ declare const DescribeCrossAccountAccessRoleCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DescribeCrossAccountAccessRoleCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DescribeCrossAccountAccessRoleCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = {};
39
41
  * const command = new DescribeCrossAccountAccessRoleCommand(input);
@@ -33,6 +33,8 @@ declare const DescribeExclusionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { InspectorClient, DescribeExclusionsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
35
35
  * // const { InspectorClient, DescribeExclusionsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
36
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
37
+ * const config = {}; // type is InspectorClientConfig
36
38
  * const client = new InspectorClient(config);
37
39
  * const input = { // DescribeExclusionsRequest
38
40
  * exclusionArns: [ // BatchDescribeExclusionsArnList // required
@@ -33,6 +33,8 @@ declare const DescribeFindingsCommand_base: {
33
33
  * ```javascript
34
34
  * import { InspectorClient, DescribeFindingsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
35
35
  * // const { InspectorClient, DescribeFindingsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
36
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
37
+ * const config = {}; // type is InspectorClientConfig
36
38
  * const client = new InspectorClient(config);
37
39
  * const input = { // DescribeFindingsRequest
38
40
  * findingArns: [ // BatchDescribeArnList // required
@@ -34,6 +34,8 @@ declare const DescribeResourceGroupsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DescribeResourceGroupsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DescribeResourceGroupsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DescribeResourceGroupsRequest
39
41
  * resourceGroupArns: [ // BatchDescribeArnList // required
@@ -34,6 +34,8 @@ declare const DescribeRulesPackagesCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, DescribeRulesPackagesCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, DescribeRulesPackagesCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // DescribeRulesPackagesRequest
39
41
  * rulesPackageArns: [ // BatchDescribeArnList // required
@@ -34,6 +34,8 @@ declare const GetAssessmentReportCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, GetAssessmentReportCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, GetAssessmentReportCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // GetAssessmentReportRequest
39
41
  * assessmentRunArn: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const GetExclusionsPreviewCommand_base: {
35
35
  * ```javascript
36
36
  * import { InspectorClient, GetExclusionsPreviewCommand } from "@aws-sdk/client-inspector"; // ES Modules import
37
37
  * // const { InspectorClient, GetExclusionsPreviewCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
38
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
39
+ * const config = {}; // type is InspectorClientConfig
38
40
  * const client = new InspectorClient(config);
39
41
  * const input = { // GetExclusionsPreviewRequest
40
42
  * assessmentTemplateArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const GetTelemetryMetadataCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, GetTelemetryMetadataCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, GetTelemetryMetadataCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // GetTelemetryMetadataRequest
39
41
  * assessmentRunArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ListAssessmentRunAgentsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, ListAssessmentRunAgentsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, ListAssessmentRunAgentsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // ListAssessmentRunAgentsRequest
39
41
  * assessmentRunArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ListAssessmentRunsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, ListAssessmentRunsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, ListAssessmentRunsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // ListAssessmentRunsRequest
39
41
  * assessmentTemplateArns: [ // ListParentArnList
@@ -35,6 +35,8 @@ declare const ListAssessmentTargetsCommand_base: {
35
35
  * ```javascript
36
36
  * import { InspectorClient, ListAssessmentTargetsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
37
37
  * // const { InspectorClient, ListAssessmentTargetsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
38
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
39
+ * const config = {}; // type is InspectorClientConfig
38
40
  * const client = new InspectorClient(config);
39
41
  * const input = { // ListAssessmentTargetsRequest
40
42
  * filter: { // AssessmentTargetFilter
@@ -34,6 +34,8 @@ declare const ListAssessmentTemplatesCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, ListAssessmentTemplatesCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, ListAssessmentTemplatesCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // ListAssessmentTemplatesRequest
39
41
  * assessmentTargetArns: [ // ListParentArnList
@@ -34,6 +34,8 @@ declare const ListEventSubscriptionsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, ListEventSubscriptionsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, ListEventSubscriptionsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // ListEventSubscriptionsRequest
39
41
  * resourceArn: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListExclusionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { InspectorClient, ListExclusionsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
35
35
  * // const { InspectorClient, ListExclusionsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
36
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
37
+ * const config = {}; // type is InspectorClientConfig
36
38
  * const client = new InspectorClient(config);
37
39
  * const input = { // ListExclusionsRequest
38
40
  * assessmentRunArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ListFindingsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, ListFindingsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, ListFindingsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // ListFindingsRequest
39
41
  * assessmentRunArns: [ // ListParentArnList
@@ -33,6 +33,8 @@ declare const ListRulesPackagesCommand_base: {
33
33
  * ```javascript
34
34
  * import { InspectorClient, ListRulesPackagesCommand } from "@aws-sdk/client-inspector"; // ES Modules import
35
35
  * // const { InspectorClient, ListRulesPackagesCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
36
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
37
+ * const config = {}; // type is InspectorClientConfig
36
38
  * const client = new InspectorClient(config);
37
39
  * const input = { // ListRulesPackagesRequest
38
40
  * nextToken: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { InspectorClient, ListTagsForResourceCommand } from "@aws-sdk/client-inspector"; // ES Modules import
35
35
  * // const { InspectorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
36
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
37
+ * const config = {}; // type is InspectorClientConfig
36
38
  * const client = new InspectorClient(config);
37
39
  * const input = { // ListTagsForResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const PreviewAgentsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, PreviewAgentsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, PreviewAgentsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // PreviewAgentsRequest
39
41
  * previewAgentsArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const RegisterCrossAccountAccessRoleCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, RegisterCrossAccountAccessRoleCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, RegisterCrossAccountAccessRoleCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // RegisterCrossAccountAccessRoleRequest
39
41
  * roleArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const RemoveAttributesFromFindingsCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, RemoveAttributesFromFindingsCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, RemoveAttributesFromFindingsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // RemoveAttributesFromFindingsRequest
39
41
  * findingArns: [ // AddRemoveAttributesFindingArnList // required
@@ -34,6 +34,8 @@ declare const SetTagsForResourceCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, SetTagsForResourceCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, SetTagsForResourceCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // SetTagsForResourceRequest
39
41
  * resourceArn: "STRING_VALUE", // required
@@ -35,6 +35,8 @@ declare const StartAssessmentRunCommand_base: {
35
35
  * ```javascript
36
36
  * import { InspectorClient, StartAssessmentRunCommand } from "@aws-sdk/client-inspector"; // ES Modules import
37
37
  * // const { InspectorClient, StartAssessmentRunCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
38
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
39
+ * const config = {}; // type is InspectorClientConfig
38
40
  * const client = new InspectorClient(config);
39
41
  * const input = { // StartAssessmentRunRequest
40
42
  * assessmentTemplateArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const StopAssessmentRunCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, StopAssessmentRunCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, StopAssessmentRunCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // StopAssessmentRunRequest
39
41
  * assessmentRunArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const SubscribeToEventCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, SubscribeToEventCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, SubscribeToEventCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // SubscribeToEventRequest
39
41
  * resourceArn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const UnsubscribeFromEventCommand_base: {
34
34
  * ```javascript
35
35
  * import { InspectorClient, UnsubscribeFromEventCommand } from "@aws-sdk/client-inspector"; // ES Modules import
36
36
  * // const { InspectorClient, UnsubscribeFromEventCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
37
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
38
+ * const config = {}; // type is InspectorClientConfig
37
39
  * const client = new InspectorClient(config);
38
40
  * const input = { // UnsubscribeFromEventRequest
39
41
  * resourceArn: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const UpdateAssessmentTargetCommand_base: {
36
36
  * ```javascript
37
37
  * import { InspectorClient, UpdateAssessmentTargetCommand } from "@aws-sdk/client-inspector"; // ES Modules import
38
38
  * // const { InspectorClient, UpdateAssessmentTargetCommand } = require("@aws-sdk/client-inspector"); // CommonJS import
39
+ * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector";
40
+ * const config = {}; // type is InspectorClientConfig
39
41
  * const client = new InspectorClient(config);
40
42
  * const input = { // UpdateAssessmentTargetRequest
41
43
  * assessmentTargetArn: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-inspector",
3
3
  "description": "AWS SDK for JavaScript Inspector Client for Node.js, Browser and React Native",
4
- "version": "3.890.0",
4
+ "version": "3.891.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-inspector",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
29
  "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
@@ -38,7 +38,7 @@
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
40
  "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
@@ -54,7 +54,7 @@
54
54
  "@smithy/util-defaults-mode-node": "^4.1.2",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "tslib": "^2.6.2"
60
60
  },