@aws-sdk/client-imagebuilder 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 (51) hide show
  1. package/dist-types/commands/CancelImageCreationCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateComponentCommand.d.ts +3 -3
  3. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +12 -12
  4. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +20 -20
  5. package/dist-types/commands/CreateImageCommand.d.ts +3 -3
  6. package/dist-types/commands/CreateImagePipelineCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateImageRecipeCommand.d.ts +12 -12
  8. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +8 -8
  9. package/dist-types/commands/DeleteComponentCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteImageCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +1 -1
  16. package/dist-types/commands/GetComponentCommand.d.ts +1 -1
  17. package/dist-types/commands/GetComponentPolicyCommand.d.ts +1 -1
  18. package/dist-types/commands/GetContainerRecipeCommand.d.ts +1 -1
  19. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +1 -1
  20. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +1 -1
  21. package/dist-types/commands/GetImageCommand.d.ts +1 -1
  22. package/dist-types/commands/GetImagePipelineCommand.d.ts +1 -1
  23. package/dist-types/commands/GetImagePolicyCommand.d.ts +1 -1
  24. package/dist-types/commands/GetImageRecipeCommand.d.ts +1 -1
  25. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +1 -1
  26. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +1 -1
  27. package/dist-types/commands/ImportComponentCommand.d.ts +2 -2
  28. package/dist-types/commands/ImportVmImageCommand.d.ts +2 -2
  29. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListComponentsCommand.d.ts +4 -4
  31. package/dist-types/commands/ListContainerRecipesCommand.d.ts +4 -4
  32. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +4 -4
  33. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +4 -4
  34. package/dist-types/commands/ListImagePackagesCommand.d.ts +1 -1
  35. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +4 -4
  36. package/dist-types/commands/ListImagePipelinesCommand.d.ts +4 -4
  37. package/dist-types/commands/ListImageRecipesCommand.d.ts +4 -4
  38. package/dist-types/commands/ListImagesCommand.d.ts +4 -4
  39. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +4 -4
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  41. package/dist-types/commands/PutComponentPolicyCommand.d.ts +1 -1
  42. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +1 -1
  43. package/dist-types/commands/PutImagePolicyCommand.d.ts +1 -1
  44. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +1 -1
  45. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +1 -1
  46. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  47. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  48. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +20 -20
  49. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +3 -3
  50. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +7 -7
  51. package/package.json +3 -3
@@ -27,7 +27,7 @@ export interface CancelImageCreationCommandOutput extends CancelImageCreationRes
27
27
  * import { ImagebuilderClient, CancelImageCreationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, CancelImageCreationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // CancelImageCreationRequest
31
31
  * imageBuildVersionArn: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE", // required
33
33
  * };
@@ -37,19 +37,19 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
37
37
  * import { ImagebuilderClient, CreateComponentCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
38
38
  * // const { ImagebuilderClient, CreateComponentCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
39
39
  * const client = new ImagebuilderClient(config);
40
- * const input = {
40
+ * const input = { // CreateComponentRequest
41
41
  * name: "STRING_VALUE", // required
42
42
  * semanticVersion: "STRING_VALUE", // required
43
43
  * description: "STRING_VALUE",
44
44
  * changeDescription: "STRING_VALUE",
45
45
  * platform: "Windows" || "Linux", // required
46
- * supportedOsVersions: [
46
+ * supportedOsVersions: [ // OsVersionList
47
47
  * "STRING_VALUE",
48
48
  * ],
49
49
  * data: "STRING_VALUE",
50
50
  * uri: "STRING_VALUE",
51
51
  * kmsKeyId: "STRING_VALUE",
52
- * tags: {
52
+ * tags: { // TagMap
53
53
  * "<keys>": "STRING_VALUE",
54
54
  * },
55
55
  * clientToken: "STRING_VALUE", // required
@@ -26,30 +26,30 @@ export interface CreateContainerRecipeCommandOutput extends CreateContainerRecip
26
26
  * import { ImagebuilderClient, CreateContainerRecipeCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, CreateContainerRecipeCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // CreateContainerRecipeRequest
30
30
  * containerType: "DOCKER", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
33
  * semanticVersion: "STRING_VALUE", // required
34
- * components: [ // required
35
- * {
34
+ * components: [ // ComponentConfigurationList // required
35
+ * { // ComponentConfiguration
36
36
  * componentArn: "STRING_VALUE", // required
37
- * parameters: [
38
- * {
37
+ * parameters: [ // ComponentParameterList
38
+ * { // ComponentParameter
39
39
  * name: "STRING_VALUE", // required
40
- * value: [ // required
40
+ * value: [ // ComponentParameterValueList // required
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * },
44
44
  * ],
45
45
  * },
46
46
  * ],
47
- * instanceConfiguration: {
47
+ * instanceConfiguration: { // InstanceConfiguration
48
48
  * image: "STRING_VALUE",
49
- * blockDeviceMappings: [
50
- * {
49
+ * blockDeviceMappings: [ // InstanceBlockDeviceMappings
50
+ * { // InstanceBlockDeviceMapping
51
51
  * deviceName: "STRING_VALUE",
52
- * ebs: {
52
+ * ebs: { // EbsInstanceBlockDeviceSpecification
53
53
  * encrypted: true || false,
54
54
  * deleteOnTermination: true || false,
55
55
  * iops: Number("int"),
@@ -69,11 +69,11 @@ export interface CreateContainerRecipeCommandOutput extends CreateContainerRecip
69
69
  * platformOverride: "Windows" || "Linux",
70
70
  * imageOsVersionOverride: "STRING_VALUE",
71
71
  * parentImage: "STRING_VALUE", // required
72
- * tags: {
72
+ * tags: { // TagMap
73
73
  * "<keys>": "STRING_VALUE",
74
74
  * },
75
75
  * workingDirectory: "STRING_VALUE",
76
- * targetRepository: {
76
+ * targetRepository: { // TargetContainerRepository
77
77
  * service: "ECR", // required
78
78
  * repositoryName: "STRING_VALUE", // required
79
79
  * },
@@ -27,71 +27,71 @@ export interface CreateDistributionConfigurationCommandOutput extends CreateDist
27
27
  * import { ImagebuilderClient, CreateDistributionConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, CreateDistributionConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // CreateDistributionConfigurationRequest
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
- * distributions: [ // required
34
- * {
33
+ * distributions: [ // DistributionList // required
34
+ * { // Distribution
35
35
  * region: "STRING_VALUE", // required
36
- * amiDistributionConfiguration: {
36
+ * amiDistributionConfiguration: { // AmiDistributionConfiguration
37
37
  * name: "STRING_VALUE",
38
38
  * description: "STRING_VALUE",
39
- * targetAccountIds: [
39
+ * targetAccountIds: [ // AccountList
40
40
  * "STRING_VALUE",
41
41
  * ],
42
- * amiTags: {
42
+ * amiTags: { // TagMap
43
43
  * "<keys>": "STRING_VALUE",
44
44
  * },
45
45
  * kmsKeyId: "STRING_VALUE",
46
- * launchPermission: {
46
+ * launchPermission: { // LaunchPermissionConfiguration
47
47
  * userIds: [
48
48
  * "STRING_VALUE",
49
49
  * ],
50
- * userGroups: [
50
+ * userGroups: [ // StringList
51
51
  * "STRING_VALUE",
52
52
  * ],
53
- * organizationArns: [
53
+ * organizationArns: [ // OrganizationArnList
54
54
  * "STRING_VALUE",
55
55
  * ],
56
- * organizationalUnitArns: [
56
+ * organizationalUnitArns: [ // OrganizationalUnitArnList
57
57
  * "STRING_VALUE",
58
58
  * ],
59
59
  * },
60
60
  * },
61
- * containerDistributionConfiguration: {
61
+ * containerDistributionConfiguration: { // ContainerDistributionConfiguration
62
62
  * description: "STRING_VALUE",
63
63
  * containerTags: [
64
64
  * "STRING_VALUE",
65
65
  * ],
66
- * targetRepository: {
66
+ * targetRepository: { // TargetContainerRepository
67
67
  * service: "ECR", // required
68
68
  * repositoryName: "STRING_VALUE", // required
69
69
  * },
70
70
  * },
71
- * licenseConfigurationArns: [
71
+ * licenseConfigurationArns: [ // LicenseConfigurationArnList
72
72
  * "STRING_VALUE",
73
73
  * ],
74
- * launchTemplateConfigurations: [
75
- * {
74
+ * launchTemplateConfigurations: [ // LaunchTemplateConfigurationList
75
+ * { // LaunchTemplateConfiguration
76
76
  * launchTemplateId: "STRING_VALUE", // required
77
77
  * accountId: "STRING_VALUE",
78
78
  * setDefaultVersion: true || false,
79
79
  * },
80
80
  * ],
81
- * s3ExportConfiguration: {
81
+ * s3ExportConfiguration: { // S3ExportConfiguration
82
82
  * roleName: "STRING_VALUE", // required
83
83
  * diskImageFormat: "VMDK" || "RAW" || "VHD", // required
84
84
  * s3Bucket: "STRING_VALUE", // required
85
85
  * s3Prefix: "STRING_VALUE",
86
86
  * },
87
- * fastLaunchConfigurations: [
88
- * {
87
+ * fastLaunchConfigurations: [ // FastLaunchConfigurationList
88
+ * { // FastLaunchConfiguration
89
89
  * enabled: true || false, // required
90
- * snapshotConfiguration: {
90
+ * snapshotConfiguration: { // FastLaunchSnapshotConfiguration
91
91
  * targetResourceCount: Number("int"),
92
92
  * },
93
93
  * maxParallelLaunches: Number("int"),
94
- * launchTemplate: {
94
+ * launchTemplate: { // FastLaunchLaunchTemplateSpecification
95
95
  * launchTemplateId: "STRING_VALUE",
96
96
  * launchTemplateName: "STRING_VALUE",
97
97
  * launchTemplateVersion: "STRING_VALUE",
@@ -28,17 +28,17 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat
28
28
  * import { ImagebuilderClient, CreateImageCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
29
29
  * // const { ImagebuilderClient, CreateImageCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
30
30
  * const client = new ImagebuilderClient(config);
31
- * const input = {
31
+ * const input = { // CreateImageRequest
32
32
  * imageRecipeArn: "STRING_VALUE",
33
33
  * containerRecipeArn: "STRING_VALUE",
34
34
  * distributionConfigurationArn: "STRING_VALUE",
35
35
  * infrastructureConfigurationArn: "STRING_VALUE", // required
36
- * imageTestsConfiguration: {
36
+ * imageTestsConfiguration: { // ImageTestsConfiguration
37
37
  * imageTestsEnabled: true || false,
38
38
  * timeoutMinutes: Number("int"),
39
39
  * },
40
40
  * enhancedImageMetadataEnabled: true || false,
41
- * tags: {
41
+ * tags: { // TagMap
42
42
  * "<keys>": "STRING_VALUE",
43
43
  * },
44
44
  * clientToken: "STRING_VALUE", // required
@@ -27,25 +27,25 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes
27
27
  * import { ImagebuilderClient, CreateImagePipelineCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, CreateImagePipelineCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // CreateImagePipelineRequest
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
33
  * imageRecipeArn: "STRING_VALUE",
34
34
  * containerRecipeArn: "STRING_VALUE",
35
35
  * infrastructureConfigurationArn: "STRING_VALUE", // required
36
36
  * distributionConfigurationArn: "STRING_VALUE",
37
- * imageTestsConfiguration: {
37
+ * imageTestsConfiguration: { // ImageTestsConfiguration
38
38
  * imageTestsEnabled: true || false,
39
39
  * timeoutMinutes: Number("int"),
40
40
  * },
41
41
  * enhancedImageMetadataEnabled: true || false,
42
- * schedule: {
42
+ * schedule: { // Schedule
43
43
  * scheduleExpression: "STRING_VALUE",
44
44
  * timezone: "STRING_VALUE",
45
45
  * pipelineExecutionStartCondition: "EXPRESSION_MATCH_ONLY" || "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
46
46
  * },
47
47
  * status: "DISABLED" || "ENABLED",
48
- * tags: {
48
+ * tags: { // TagMap
49
49
  * "<keys>": "STRING_VALUE",
50
50
  * },
51
51
  * clientToken: "STRING_VALUE", // required
@@ -27,17 +27,17 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
27
27
  * import { ImagebuilderClient, CreateImageRecipeCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, CreateImageRecipeCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // CreateImageRecipeRequest
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
33
  * semanticVersion: "STRING_VALUE", // required
34
- * components: [ // required
35
- * {
34
+ * components: [ // ComponentConfigurationList // required
35
+ * { // ComponentConfiguration
36
36
  * componentArn: "STRING_VALUE", // required
37
- * parameters: [
38
- * {
37
+ * parameters: [ // ComponentParameterList
38
+ * { // ComponentParameter
39
39
  * name: "STRING_VALUE", // required
40
- * value: [ // required
40
+ * value: [ // ComponentParameterValueList // required
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * },
@@ -45,10 +45,10 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
45
45
  * },
46
46
  * ],
47
47
  * parentImage: "STRING_VALUE", // required
48
- * blockDeviceMappings: [
49
- * {
48
+ * blockDeviceMappings: [ // InstanceBlockDeviceMappings
49
+ * { // InstanceBlockDeviceMapping
50
50
  * deviceName: "STRING_VALUE",
51
- * ebs: {
51
+ * ebs: { // EbsInstanceBlockDeviceSpecification
52
52
  * encrypted: true || false,
53
53
  * deleteOnTermination: true || false,
54
54
  * iops: Number("int"),
@@ -62,12 +62,12 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
62
62
  * noDevice: "STRING_VALUE",
63
63
  * },
64
64
  * ],
65
- * tags: {
65
+ * tags: { // TagMap
66
66
  * "<keys>": "STRING_VALUE",
67
67
  * },
68
68
  * workingDirectory: "STRING_VALUE",
69
- * additionalInstanceConfiguration: {
70
- * systemsManagerAgent: {
69
+ * additionalInstanceConfiguration: { // AdditionalInstanceConfiguration
70
+ * systemsManagerAgent: { // SystemsManagerAgent
71
71
  * uninstallAfterBuild: true || false,
72
72
  * },
73
73
  * userDataOverride: "STRING_VALUE",
@@ -27,19 +27,19 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
27
27
  * import { ImagebuilderClient, CreateInfrastructureConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, CreateInfrastructureConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // CreateInfrastructureConfigurationRequest
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
- * instanceTypes: [
33
+ * instanceTypes: [ // InstanceTypeList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * instanceProfileName: "STRING_VALUE", // required
37
- * securityGroupIds: [
37
+ * securityGroupIds: [ // SecurityGroupIds
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * subnetId: "STRING_VALUE",
41
- * logging: {
42
- * s3Logs: {
41
+ * logging: { // Logging
42
+ * s3Logs: { // S3Logs
43
43
  * s3BucketName: "STRING_VALUE",
44
44
  * s3KeyPrefix: "STRING_VALUE",
45
45
  * },
@@ -47,14 +47,14 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
47
47
  * keyPair: "STRING_VALUE",
48
48
  * terminateInstanceOnFailure: true || false,
49
49
  * snsTopicArn: "STRING_VALUE",
50
- * resourceTags: {
50
+ * resourceTags: { // ResourceTagMap
51
51
  * "<keys>": "STRING_VALUE",
52
52
  * },
53
- * instanceMetadataOptions: {
53
+ * instanceMetadataOptions: { // InstanceMetadataOptions
54
54
  * httpTokens: "STRING_VALUE",
55
55
  * httpPutResponseHopLimit: Number("int"),
56
56
  * },
57
- * tags: {
57
+ * tags: { // TagMap
58
58
  * "<keys>": "STRING_VALUE",
59
59
  * },
60
60
  * clientToken: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
26
26
  * import { ImagebuilderClient, DeleteComponentCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, DeleteComponentCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // DeleteComponentRequest
30
30
  * componentBuildVersionArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteComponentCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip
26
26
  * import { ImagebuilderClient, DeleteContainerRecipeCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, DeleteContainerRecipeCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // DeleteContainerRecipeRequest
30
30
  * containerRecipeArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteContainerRecipeCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteDistributionConfigurationCommandOutput extends DeleteDist
26
26
  * import { ImagebuilderClient, DeleteDistributionConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, DeleteDistributionConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // DeleteDistributionConfigurationRequest
30
30
  * distributionConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteDistributionConfigurationCommand(input);
@@ -46,7 +46,7 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat
46
46
  * import { ImagebuilderClient, DeleteImageCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
47
47
  * // const { ImagebuilderClient, DeleteImageCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
48
48
  * const client = new ImagebuilderClient(config);
49
- * const input = {
49
+ * const input = { // DeleteImageRequest
50
50
  * imageBuildVersionArn: "STRING_VALUE", // required
51
51
  * };
52
52
  * const command = new DeleteImageCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes
26
26
  * import { ImagebuilderClient, DeleteImagePipelineCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, DeleteImagePipelineCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // DeleteImagePipelineRequest
30
30
  * imagePipelineArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteImagePipelineCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons
26
26
  * import { ImagebuilderClient, DeleteImageRecipeCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, DeleteImageRecipeCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // DeleteImageRecipeRequest
30
30
  * imageRecipeArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteImageRecipeCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteIn
26
26
  * import { ImagebuilderClient, DeleteInfrastructureConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, DeleteInfrastructureConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // DeleteInfrastructureConfigurationRequest
30
30
  * infrastructureConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteInfrastructureConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
26
26
  * import { ImagebuilderClient, GetComponentCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetComponentCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetComponentRequest
30
30
  * componentBuildVersionArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetComponentCommand(input);
@@ -26,7 +26,7 @@ export interface GetComponentPolicyCommandOutput extends GetComponentPolicyRespo
26
26
  * import { ImagebuilderClient, GetComponentPolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetComponentPolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetComponentPolicyRequest
30
30
  * componentArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetComponentPolicyCommand(input);
@@ -26,7 +26,7 @@ export interface GetContainerRecipeCommandOutput extends GetContainerRecipeRespo
26
26
  * import { ImagebuilderClient, GetContainerRecipeCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetContainerRecipeCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetContainerRecipeRequest
30
30
  * containerRecipeArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetContainerRecipeCommand(input);
@@ -26,7 +26,7 @@ export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecip
26
26
  * import { ImagebuilderClient, GetContainerRecipePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetContainerRecipePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetContainerRecipePolicyRequest
30
30
  * containerRecipeArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetContainerRecipePolicyCommand(input);
@@ -26,7 +26,7 @@ export interface GetDistributionConfigurationCommandOutput extends GetDistributi
26
26
  * import { ImagebuilderClient, GetDistributionConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetDistributionConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetDistributionConfigurationRequest
30
30
  * distributionConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetDistributionConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare
26
26
  * import { ImagebuilderClient, GetImageCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetImageCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetImageRequest
30
30
  * imageBuildVersionArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetImageCommand(input);
@@ -26,7 +26,7 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse,
26
26
  * import { ImagebuilderClient, GetImagePipelineCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetImagePipelineCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetImagePipelineRequest
30
30
  * imagePipelineArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetImagePipelineCommand(input);
@@ -26,7 +26,7 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
26
26
  * import { ImagebuilderClient, GetImagePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetImagePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetImagePolicyRequest
30
30
  * imageArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetImagePolicyCommand(input);
@@ -26,7 +26,7 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
26
26
  * import { ImagebuilderClient, GetImageRecipeCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetImageRecipeCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetImageRecipeRequest
30
30
  * imageRecipeArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetImageRecipeCommand(input);
@@ -26,7 +26,7 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
26
26
  * import { ImagebuilderClient, GetImageRecipePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetImageRecipePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetImageRecipePolicyRequest
30
30
  * imageRecipeArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetImageRecipePolicyCommand(input);
@@ -26,7 +26,7 @@ export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastr
26
26
  * import { ImagebuilderClient, GetInfrastructureConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, GetInfrastructureConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // GetInfrastructureConfigurationRequest
30
30
  * infrastructureConfigurationArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetInfrastructureConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
26
26
  * import { ImagebuilderClient, ImportComponentCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ImportComponentCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ImportComponentRequest
30
30
  * name: "STRING_VALUE", // required
31
31
  * semanticVersion: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
@@ -37,7 +37,7 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
37
37
  * data: "STRING_VALUE",
38
38
  * uri: "STRING_VALUE",
39
39
  * kmsKeyId: "STRING_VALUE",
40
- * tags: {
40
+ * tags: { // TagMap
41
41
  * "<keys>": "STRING_VALUE",
42
42
  * },
43
43
  * clientToken: "STRING_VALUE", // required
@@ -34,14 +34,14 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met
34
34
  * import { ImagebuilderClient, ImportVmImageCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
35
35
  * // const { ImagebuilderClient, ImportVmImageCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
36
36
  * const client = new ImagebuilderClient(config);
37
- * const input = {
37
+ * const input = { // ImportVmImageRequest
38
38
  * name: "STRING_VALUE", // required
39
39
  * semanticVersion: "STRING_VALUE", // required
40
40
  * description: "STRING_VALUE",
41
41
  * platform: "Windows" || "Linux", // required
42
42
  * osVersion: "STRING_VALUE",
43
43
  * vmImportTaskId: "STRING_VALUE", // required
44
- * tags: {
44
+ * tags: { // TagMap
45
45
  * "<keys>": "STRING_VALUE",
46
46
  * },
47
47
  * clientToken: "STRING_VALUE", // required
@@ -35,7 +35,7 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
35
35
  * import { ImagebuilderClient, ListComponentBuildVersionsCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
36
36
  * // const { ImagebuilderClient, ListComponentBuildVersionsCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
37
37
  * const client = new ImagebuilderClient(config);
38
- * const input = {
38
+ * const input = { // ListComponentBuildVersionsRequest
39
39
  * componentVersionArn: "STRING_VALUE", // required
40
40
  * maxResults: Number("int"),
41
41
  * nextToken: "STRING_VALUE",
@@ -37,12 +37,12 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
37
37
  * import { ImagebuilderClient, ListComponentsCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
38
38
  * // const { ImagebuilderClient, ListComponentsCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
39
39
  * const client = new ImagebuilderClient(config);
40
- * const input = {
40
+ * const input = { // ListComponentsRequest
41
41
  * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
42
- * filters: [
43
- * {
42
+ * filters: [ // FilterList
43
+ * { // Filter
44
44
  * name: "STRING_VALUE",
45
- * values: [
45
+ * values: [ // FilterValues
46
46
  * "STRING_VALUE",
47
47
  * ],
48
48
  * },
@@ -26,12 +26,12 @@ export interface ListContainerRecipesCommandOutput extends ListContainerRecipesR
26
26
  * import { ImagebuilderClient, ListContainerRecipesCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListContainerRecipesCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ListContainerRecipesRequest
30
30
  * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
31
- * filters: [
32
- * {
31
+ * filters: [ // FilterList
32
+ * { // Filter
33
33
  * name: "STRING_VALUE",
34
- * values: [
34
+ * values: [ // FilterValues
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * },
@@ -26,11 +26,11 @@ export interface ListDistributionConfigurationsCommandOutput extends ListDistrib
26
26
  * import { ImagebuilderClient, ListDistributionConfigurationsCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListDistributionConfigurationsCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
30
- * filters: [
31
- * {
29
+ * const input = { // ListDistributionConfigurationsRequest
30
+ * filters: [ // FilterList
31
+ * { // Filter
32
32
  * name: "STRING_VALUE",
33
- * values: [
33
+ * values: [ // FilterValues
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * },
@@ -26,12 +26,12 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi
26
26
  * import { ImagebuilderClient, ListImageBuildVersionsCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListImageBuildVersionsCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ListImageBuildVersionsRequest
30
30
  * imageVersionArn: "STRING_VALUE", // required
31
- * filters: [
32
- * {
31
+ * filters: [ // FilterList
32
+ * { // Filter
33
33
  * name: "STRING_VALUE",
34
- * values: [
34
+ * values: [ // FilterValues
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * },
@@ -26,7 +26,7 @@ export interface ListImagePackagesCommandOutput extends ListImagePackagesRespons
26
26
  * import { ImagebuilderClient, ListImagePackagesCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListImagePackagesCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ListImagePackagesRequest
30
30
  * imageBuildVersionArn: "STRING_VALUE", // required
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
@@ -26,12 +26,12 @@ export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineI
26
26
  * import { ImagebuilderClient, ListImagePipelineImagesCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListImagePipelineImagesCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ListImagePipelineImagesRequest
30
30
  * imagePipelineArn: "STRING_VALUE", // required
31
- * filters: [
32
- * {
31
+ * filters: [ // FilterList
32
+ * { // Filter
33
33
  * name: "STRING_VALUE",
34
- * values: [
34
+ * values: [ // FilterValues
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * },
@@ -26,11 +26,11 @@ export interface ListImagePipelinesCommandOutput extends ListImagePipelinesRespo
26
26
  * import { ImagebuilderClient, ListImagePipelinesCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListImagePipelinesCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
30
- * filters: [
31
- * {
29
+ * const input = { // ListImagePipelinesRequest
30
+ * filters: [ // FilterList
31
+ * { // Filter
32
32
  * name: "STRING_VALUE",
33
- * values: [
33
+ * values: [ // FilterValues
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * },
@@ -26,12 +26,12 @@ export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse,
26
26
  * import { ImagebuilderClient, ListImageRecipesCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListImageRecipesCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ListImageRecipesRequest
30
30
  * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
31
- * filters: [
32
- * {
31
+ * filters: [ // FilterList
32
+ * { // Filter
33
33
  * name: "STRING_VALUE",
34
- * values: [
34
+ * values: [ // FilterValues
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * },
@@ -27,12 +27,12 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
27
27
  * import { ImagebuilderClient, ListImagesCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, ListImagesCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // ListImagesRequest
31
31
  * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
32
- * filters: [
33
- * {
32
+ * filters: [ // FilterList
33
+ * { // Filter
34
34
  * name: "STRING_VALUE",
35
- * values: [
35
+ * values: [ // FilterValues
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * },
@@ -26,11 +26,11 @@ export interface ListInfrastructureConfigurationsCommandOutput extends ListInfra
26
26
  * import { ImagebuilderClient, ListInfrastructureConfigurationsCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListInfrastructureConfigurationsCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
30
- * filters: [
31
- * {
29
+ * const input = { // ListInfrastructureConfigurationsRequest
30
+ * filters: [ // FilterList
31
+ * { // Filter
32
32
  * name: "STRING_VALUE",
33
- * values: [
33
+ * values: [ // FilterValues
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * },
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { ImagebuilderClient, ListTagsForResourceCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, ListTagsForResourceCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -28,7 +28,7 @@ export interface PutComponentPolicyCommandOutput extends PutComponentPolicyRespo
28
28
  * import { ImagebuilderClient, PutComponentPolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
29
29
  * // const { ImagebuilderClient, PutComponentPolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
30
30
  * const client = new ImagebuilderClient(config);
31
- * const input = {
31
+ * const input = { // PutComponentPolicyRequest
32
32
  * componentArn: "STRING_VALUE", // required
33
33
  * policy: "STRING_VALUE", // required
34
34
  * };
@@ -26,7 +26,7 @@ export interface PutContainerRecipePolicyCommandOutput extends PutContainerRecip
26
26
  * import { ImagebuilderClient, PutContainerRecipePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, PutContainerRecipePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // PutContainerRecipePolicyRequest
30
30
  * containerRecipeArn: "STRING_VALUE", // required
31
31
  * policy: "STRING_VALUE", // required
32
32
  * };
@@ -28,7 +28,7 @@ export interface PutImagePolicyCommandOutput extends PutImagePolicyResponse, __M
28
28
  * import { ImagebuilderClient, PutImagePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
29
29
  * // const { ImagebuilderClient, PutImagePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
30
30
  * const client = new ImagebuilderClient(config);
31
- * const input = {
31
+ * const input = { // PutImagePolicyRequest
32
32
  * imageArn: "STRING_VALUE", // required
33
33
  * policy: "STRING_VALUE", // required
34
34
  * };
@@ -28,7 +28,7 @@ export interface PutImageRecipePolicyCommandOutput extends PutImageRecipePolicyR
28
28
  * import { ImagebuilderClient, PutImageRecipePolicyCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
29
29
  * // const { ImagebuilderClient, PutImageRecipePolicyCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
30
30
  * const client = new ImagebuilderClient(config);
31
- * const input = {
31
+ * const input = { // PutImageRecipePolicyRequest
32
32
  * imageRecipeArn: "STRING_VALUE", // required
33
33
  * policy: "STRING_VALUE", // required
34
34
  * };
@@ -26,7 +26,7 @@ export interface StartImagePipelineExecutionCommandOutput extends StartImagePipe
26
26
  * import { ImagebuilderClient, StartImagePipelineExecutionCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, StartImagePipelineExecutionCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // StartImagePipelineExecutionRequest
30
30
  * imagePipelineArn: "STRING_VALUE", // required
31
31
  * clientToken: "STRING_VALUE", // required
32
32
  * };
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { ImagebuilderClient, TagResourceCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, TagResourceCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { ImagebuilderClient, UntagResourceCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
27
27
  * // const { ImagebuilderClient, UntagResourceCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
28
28
  * const client = new ImagebuilderClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -27,71 +27,71 @@ export interface UpdateDistributionConfigurationCommandOutput extends UpdateDist
27
27
  * import { ImagebuilderClient, UpdateDistributionConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, UpdateDistributionConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // UpdateDistributionConfigurationRequest
31
31
  * distributionConfigurationArn: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
- * distributions: [ // required
34
- * {
33
+ * distributions: [ // DistributionList // required
34
+ * { // Distribution
35
35
  * region: "STRING_VALUE", // required
36
- * amiDistributionConfiguration: {
36
+ * amiDistributionConfiguration: { // AmiDistributionConfiguration
37
37
  * name: "STRING_VALUE",
38
38
  * description: "STRING_VALUE",
39
- * targetAccountIds: [
39
+ * targetAccountIds: [ // AccountList
40
40
  * "STRING_VALUE",
41
41
  * ],
42
- * amiTags: {
42
+ * amiTags: { // TagMap
43
43
  * "<keys>": "STRING_VALUE",
44
44
  * },
45
45
  * kmsKeyId: "STRING_VALUE",
46
- * launchPermission: {
46
+ * launchPermission: { // LaunchPermissionConfiguration
47
47
  * userIds: [
48
48
  * "STRING_VALUE",
49
49
  * ],
50
- * userGroups: [
50
+ * userGroups: [ // StringList
51
51
  * "STRING_VALUE",
52
52
  * ],
53
- * organizationArns: [
53
+ * organizationArns: [ // OrganizationArnList
54
54
  * "STRING_VALUE",
55
55
  * ],
56
- * organizationalUnitArns: [
56
+ * organizationalUnitArns: [ // OrganizationalUnitArnList
57
57
  * "STRING_VALUE",
58
58
  * ],
59
59
  * },
60
60
  * },
61
- * containerDistributionConfiguration: {
61
+ * containerDistributionConfiguration: { // ContainerDistributionConfiguration
62
62
  * description: "STRING_VALUE",
63
63
  * containerTags: [
64
64
  * "STRING_VALUE",
65
65
  * ],
66
- * targetRepository: {
66
+ * targetRepository: { // TargetContainerRepository
67
67
  * service: "ECR", // required
68
68
  * repositoryName: "STRING_VALUE", // required
69
69
  * },
70
70
  * },
71
- * licenseConfigurationArns: [
71
+ * licenseConfigurationArns: [ // LicenseConfigurationArnList
72
72
  * "STRING_VALUE",
73
73
  * ],
74
- * launchTemplateConfigurations: [
75
- * {
74
+ * launchTemplateConfigurations: [ // LaunchTemplateConfigurationList
75
+ * { // LaunchTemplateConfiguration
76
76
  * launchTemplateId: "STRING_VALUE", // required
77
77
  * accountId: "STRING_VALUE",
78
78
  * setDefaultVersion: true || false,
79
79
  * },
80
80
  * ],
81
- * s3ExportConfiguration: {
81
+ * s3ExportConfiguration: { // S3ExportConfiguration
82
82
  * roleName: "STRING_VALUE", // required
83
83
  * diskImageFormat: "VMDK" || "RAW" || "VHD", // required
84
84
  * s3Bucket: "STRING_VALUE", // required
85
85
  * s3Prefix: "STRING_VALUE",
86
86
  * },
87
- * fastLaunchConfigurations: [
88
- * {
87
+ * fastLaunchConfigurations: [ // FastLaunchConfigurationList
88
+ * { // FastLaunchConfiguration
89
89
  * enabled: true || false, // required
90
- * snapshotConfiguration: {
90
+ * snapshotConfiguration: { // FastLaunchSnapshotConfiguration
91
91
  * targetResourceCount: Number("int"),
92
92
  * },
93
93
  * maxParallelLaunches: Number("int"),
94
- * launchTemplate: {
94
+ * launchTemplate: { // FastLaunchLaunchTemplateSpecification
95
95
  * launchTemplateId: "STRING_VALUE",
96
96
  * launchTemplateName: "STRING_VALUE",
97
97
  * launchTemplateVersion: "STRING_VALUE",
@@ -32,19 +32,19 @@ export interface UpdateImagePipelineCommandOutput extends UpdateImagePipelineRes
32
32
  * import { ImagebuilderClient, UpdateImagePipelineCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
33
33
  * // const { ImagebuilderClient, UpdateImagePipelineCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
34
34
  * const client = new ImagebuilderClient(config);
35
- * const input = {
35
+ * const input = { // UpdateImagePipelineRequest
36
36
  * imagePipelineArn: "STRING_VALUE", // required
37
37
  * description: "STRING_VALUE",
38
38
  * imageRecipeArn: "STRING_VALUE",
39
39
  * containerRecipeArn: "STRING_VALUE",
40
40
  * infrastructureConfigurationArn: "STRING_VALUE", // required
41
41
  * distributionConfigurationArn: "STRING_VALUE",
42
- * imageTestsConfiguration: {
42
+ * imageTestsConfiguration: { // ImageTestsConfiguration
43
43
  * imageTestsEnabled: true || false,
44
44
  * timeoutMinutes: Number("int"),
45
45
  * },
46
46
  * enhancedImageMetadataEnabled: true || false,
47
- * schedule: {
47
+ * schedule: { // Schedule
48
48
  * scheduleExpression: "STRING_VALUE",
49
49
  * timezone: "STRING_VALUE",
50
50
  * pipelineExecutionStartCondition: "EXPRESSION_MATCH_ONLY" || "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
@@ -27,19 +27,19 @@ export interface UpdateInfrastructureConfigurationCommandOutput extends UpdateIn
27
27
  * import { ImagebuilderClient, UpdateInfrastructureConfigurationCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
28
28
  * // const { ImagebuilderClient, UpdateInfrastructureConfigurationCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
29
29
  * const client = new ImagebuilderClient(config);
30
- * const input = {
30
+ * const input = { // UpdateInfrastructureConfigurationRequest
31
31
  * infrastructureConfigurationArn: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
- * instanceTypes: [
33
+ * instanceTypes: [ // InstanceTypeList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * instanceProfileName: "STRING_VALUE", // required
37
- * securityGroupIds: [
37
+ * securityGroupIds: [ // SecurityGroupIds
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * subnetId: "STRING_VALUE",
41
- * logging: {
42
- * s3Logs: {
41
+ * logging: { // Logging
42
+ * s3Logs: { // S3Logs
43
43
  * s3BucketName: "STRING_VALUE",
44
44
  * s3KeyPrefix: "STRING_VALUE",
45
45
  * },
@@ -48,10 +48,10 @@ export interface UpdateInfrastructureConfigurationCommandOutput extends UpdateIn
48
48
  * terminateInstanceOnFailure: true || false,
49
49
  * snsTopicArn: "STRING_VALUE",
50
50
  * clientToken: "STRING_VALUE", // required
51
- * resourceTags: {
51
+ * resourceTags: { // ResourceTagMap
52
52
  * "<keys>": "STRING_VALUE",
53
53
  * },
54
- * instanceMetadataOptions: {
54
+ * instanceMetadataOptions: { // InstanceMetadataOptions
55
55
  * httpTokens: "STRING_VALUE",
56
56
  * httpPutResponseHopLimit: Number("int"),
57
57
  * },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-imagebuilder",
3
3
  "description": "AWS SDK for JavaScript Imagebuilder 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",