@aws-sdk/client-imagebuilder 3.298.0 → 3.300.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 +4 -0
  2. package/dist-types/commands/CreateComponentCommand.d.ts +17 -0
  3. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +54 -0
  4. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +79 -0
  5. package/dist-types/commands/CreateImageCommand.d.ts +15 -0
  6. package/dist-types/commands/CreateImagePipelineCommand.d.ts +23 -0
  7. package/dist-types/commands/CreateImageRecipeCommand.d.ts +47 -0
  8. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +32 -0
  9. package/dist-types/commands/DeleteComponentCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +3 -0
  12. package/dist-types/commands/DeleteImageCommand.d.ts +3 -0
  13. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +3 -0
  14. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +3 -0
  15. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +3 -0
  16. package/dist-types/commands/GetComponentCommand.d.ts +3 -0
  17. package/dist-types/commands/GetComponentPolicyCommand.d.ts +3 -0
  18. package/dist-types/commands/GetContainerRecipeCommand.d.ts +3 -0
  19. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +3 -0
  20. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +3 -0
  21. package/dist-types/commands/GetImageCommand.d.ts +3 -0
  22. package/dist-types/commands/GetImagePipelineCommand.d.ts +3 -0
  23. package/dist-types/commands/GetImagePolicyCommand.d.ts +3 -0
  24. package/dist-types/commands/GetImageRecipeCommand.d.ts +3 -0
  25. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +3 -0
  26. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +3 -0
  27. package/dist-types/commands/ImportComponentCommand.d.ts +16 -0
  28. package/dist-types/commands/ImportVmImageCommand.d.ts +12 -0
  29. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +5 -0
  30. package/dist-types/commands/ListComponentsCommand.d.ts +14 -0
  31. package/dist-types/commands/ListContainerRecipesCommand.d.ts +13 -0
  32. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +12 -0
  33. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +13 -0
  34. package/dist-types/commands/ListImagePackagesCommand.d.ts +5 -0
  35. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +13 -0
  36. package/dist-types/commands/ListImagePipelinesCommand.d.ts +12 -0
  37. package/dist-types/commands/ListImageRecipesCommand.d.ts +13 -0
  38. package/dist-types/commands/ListImagesCommand.d.ts +15 -0
  39. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +12 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  41. package/dist-types/commands/PutComponentPolicyCommand.d.ts +4 -0
  42. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +4 -0
  43. package/dist-types/commands/PutImagePolicyCommand.d.ts +4 -0
  44. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +4 -0
  45. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +4 -0
  46. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  47. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  48. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +76 -0
  49. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +20 -0
  50. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +29 -0
  51. package/package.json +12 -12
@@ -27,6 +27,10 @@ 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 = {
31
+ * imageBuildVersionArn: "STRING_VALUE", // required
32
+ * clientToken: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new CancelImageCreationCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -37,6 +37,23 @@ 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 = {
41
+ * name: "STRING_VALUE", // required
42
+ * semanticVersion: "STRING_VALUE", // required
43
+ * description: "STRING_VALUE",
44
+ * changeDescription: "STRING_VALUE",
45
+ * platform: "Windows" || "Linux", // required
46
+ * supportedOsVersions: [
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * data: "STRING_VALUE",
50
+ * uri: "STRING_VALUE",
51
+ * kmsKeyId: "STRING_VALUE",
52
+ * tags: {
53
+ * "<keys>": "STRING_VALUE",
54
+ * },
55
+ * clientToken: "STRING_VALUE", // required
56
+ * };
40
57
  * const command = new CreateComponentCommand(input);
41
58
  * const response = await client.send(command);
42
59
  * ```
@@ -26,6 +26,60 @@ 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 = {
30
+ * containerType: "DOCKER", // required
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * semanticVersion: "STRING_VALUE", // required
34
+ * components: [ // required
35
+ * {
36
+ * componentArn: "STRING_VALUE", // required
37
+ * parameters: [
38
+ * {
39
+ * name: "STRING_VALUE", // required
40
+ * value: [ // required
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * },
44
+ * ],
45
+ * },
46
+ * ],
47
+ * instanceConfiguration: {
48
+ * image: "STRING_VALUE",
49
+ * blockDeviceMappings: [
50
+ * {
51
+ * deviceName: "STRING_VALUE",
52
+ * ebs: {
53
+ * encrypted: true || false,
54
+ * deleteOnTermination: true || false,
55
+ * iops: Number("int"),
56
+ * kmsKeyId: "STRING_VALUE",
57
+ * snapshotId: "STRING_VALUE",
58
+ * volumeSize: Number("int"),
59
+ * volumeType: "standard" || "io1" || "io2" || "gp2" || "gp3" || "sc1" || "st1",
60
+ * throughput: Number("int"),
61
+ * },
62
+ * virtualName: "STRING_VALUE",
63
+ * noDevice: "STRING_VALUE",
64
+ * },
65
+ * ],
66
+ * },
67
+ * dockerfileTemplateData: "STRING_VALUE",
68
+ * dockerfileTemplateUri: "STRING_VALUE",
69
+ * platformOverride: "Windows" || "Linux",
70
+ * imageOsVersionOverride: "STRING_VALUE",
71
+ * parentImage: "STRING_VALUE", // required
72
+ * tags: {
73
+ * "<keys>": "STRING_VALUE",
74
+ * },
75
+ * workingDirectory: "STRING_VALUE",
76
+ * targetRepository: {
77
+ * service: "ECR", // required
78
+ * repositoryName: "STRING_VALUE", // required
79
+ * },
80
+ * kmsKeyId: "STRING_VALUE",
81
+ * clientToken: "STRING_VALUE", // required
82
+ * };
29
83
  * const command = new CreateContainerRecipeCommand(input);
30
84
  * const response = await client.send(command);
31
85
  * ```
@@ -27,6 +27,85 @@ 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 = {
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * distributions: [ // required
34
+ * {
35
+ * region: "STRING_VALUE", // required
36
+ * amiDistributionConfiguration: {
37
+ * name: "STRING_VALUE",
38
+ * description: "STRING_VALUE",
39
+ * targetAccountIds: [
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * amiTags: {
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * kmsKeyId: "STRING_VALUE",
46
+ * launchPermission: {
47
+ * userIds: [
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * userGroups: [
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * organizationArns: [
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * organizationalUnitArns: [
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * },
60
+ * },
61
+ * containerDistributionConfiguration: {
62
+ * description: "STRING_VALUE",
63
+ * containerTags: [
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * targetRepository: {
67
+ * service: "ECR", // required
68
+ * repositoryName: "STRING_VALUE", // required
69
+ * },
70
+ * },
71
+ * licenseConfigurationArns: [
72
+ * "STRING_VALUE",
73
+ * ],
74
+ * launchTemplateConfigurations: [
75
+ * {
76
+ * launchTemplateId: "STRING_VALUE", // required
77
+ * accountId: "STRING_VALUE",
78
+ * setDefaultVersion: true || false,
79
+ * },
80
+ * ],
81
+ * s3ExportConfiguration: {
82
+ * roleName: "STRING_VALUE", // required
83
+ * diskImageFormat: "VMDK" || "RAW" || "VHD", // required
84
+ * s3Bucket: "STRING_VALUE", // required
85
+ * s3Prefix: "STRING_VALUE",
86
+ * },
87
+ * fastLaunchConfigurations: [
88
+ * {
89
+ * enabled: true || false, // required
90
+ * snapshotConfiguration: {
91
+ * targetResourceCount: Number("int"),
92
+ * },
93
+ * maxParallelLaunches: Number("int"),
94
+ * launchTemplate: {
95
+ * launchTemplateId: "STRING_VALUE",
96
+ * launchTemplateName: "STRING_VALUE",
97
+ * launchTemplateVersion: "STRING_VALUE",
98
+ * },
99
+ * accountId: "STRING_VALUE",
100
+ * },
101
+ * ],
102
+ * },
103
+ * ],
104
+ * tags: {
105
+ * "<keys>": "STRING_VALUE",
106
+ * },
107
+ * clientToken: "STRING_VALUE", // required
108
+ * };
30
109
  * const command = new CreateDistributionConfigurationCommand(input);
31
110
  * const response = await client.send(command);
32
111
  * ```
@@ -28,6 +28,21 @@ 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 = {
32
+ * imageRecipeArn: "STRING_VALUE",
33
+ * containerRecipeArn: "STRING_VALUE",
34
+ * distributionConfigurationArn: "STRING_VALUE",
35
+ * infrastructureConfigurationArn: "STRING_VALUE", // required
36
+ * imageTestsConfiguration: {
37
+ * imageTestsEnabled: true || false,
38
+ * timeoutMinutes: Number("int"),
39
+ * },
40
+ * enhancedImageMetadataEnabled: true || false,
41
+ * tags: {
42
+ * "<keys>": "STRING_VALUE",
43
+ * },
44
+ * clientToken: "STRING_VALUE", // required
45
+ * };
31
46
  * const command = new CreateImageCommand(input);
32
47
  * const response = await client.send(command);
33
48
  * ```
@@ -27,6 +27,29 @@ 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 = {
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * imageRecipeArn: "STRING_VALUE",
34
+ * containerRecipeArn: "STRING_VALUE",
35
+ * infrastructureConfigurationArn: "STRING_VALUE", // required
36
+ * distributionConfigurationArn: "STRING_VALUE",
37
+ * imageTestsConfiguration: {
38
+ * imageTestsEnabled: true || false,
39
+ * timeoutMinutes: Number("int"),
40
+ * },
41
+ * enhancedImageMetadataEnabled: true || false,
42
+ * schedule: {
43
+ * scheduleExpression: "STRING_VALUE",
44
+ * timezone: "STRING_VALUE",
45
+ * pipelineExecutionStartCondition: "EXPRESSION_MATCH_ONLY" || "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
46
+ * },
47
+ * status: "DISABLED" || "ENABLED",
48
+ * tags: {
49
+ * "<keys>": "STRING_VALUE",
50
+ * },
51
+ * clientToken: "STRING_VALUE", // required
52
+ * };
30
53
  * const command = new CreateImagePipelineCommand(input);
31
54
  * const response = await client.send(command);
32
55
  * ```
@@ -27,6 +27,53 @@ 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 = {
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * semanticVersion: "STRING_VALUE", // required
34
+ * components: [ // required
35
+ * {
36
+ * componentArn: "STRING_VALUE", // required
37
+ * parameters: [
38
+ * {
39
+ * name: "STRING_VALUE", // required
40
+ * value: [ // required
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * },
44
+ * ],
45
+ * },
46
+ * ],
47
+ * parentImage: "STRING_VALUE", // required
48
+ * blockDeviceMappings: [
49
+ * {
50
+ * deviceName: "STRING_VALUE",
51
+ * ebs: {
52
+ * encrypted: true || false,
53
+ * deleteOnTermination: true || false,
54
+ * iops: Number("int"),
55
+ * kmsKeyId: "STRING_VALUE",
56
+ * snapshotId: "STRING_VALUE",
57
+ * volumeSize: Number("int"),
58
+ * volumeType: "standard" || "io1" || "io2" || "gp2" || "gp3" || "sc1" || "st1",
59
+ * throughput: Number("int"),
60
+ * },
61
+ * virtualName: "STRING_VALUE",
62
+ * noDevice: "STRING_VALUE",
63
+ * },
64
+ * ],
65
+ * tags: {
66
+ * "<keys>": "STRING_VALUE",
67
+ * },
68
+ * workingDirectory: "STRING_VALUE",
69
+ * additionalInstanceConfiguration: {
70
+ * systemsManagerAgent: {
71
+ * uninstallAfterBuild: true || false,
72
+ * },
73
+ * userDataOverride: "STRING_VALUE",
74
+ * },
75
+ * clientToken: "STRING_VALUE", // required
76
+ * };
30
77
  * const command = new CreateImageRecipeCommand(input);
31
78
  * const response = await client.send(command);
32
79
  * ```
@@ -27,6 +27,38 @@ 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 = {
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * instanceTypes: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * instanceProfileName: "STRING_VALUE", // required
37
+ * securityGroupIds: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * subnetId: "STRING_VALUE",
41
+ * logging: {
42
+ * s3Logs: {
43
+ * s3BucketName: "STRING_VALUE",
44
+ * s3KeyPrefix: "STRING_VALUE",
45
+ * },
46
+ * },
47
+ * keyPair: "STRING_VALUE",
48
+ * terminateInstanceOnFailure: true || false,
49
+ * snsTopicArn: "STRING_VALUE",
50
+ * resourceTags: {
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * instanceMetadataOptions: {
54
+ * httpTokens: "STRING_VALUE",
55
+ * httpPutResponseHopLimit: Number("int"),
56
+ * },
57
+ * tags: {
58
+ * "<keys>": "STRING_VALUE",
59
+ * },
60
+ * clientToken: "STRING_VALUE", // required
61
+ * };
30
62
  * const command = new CreateInfrastructureConfigurationCommand(input);
31
63
  * const response = await client.send(command);
32
64
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * componentBuildVersionArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteComponentCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * containerRecipeArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteContainerRecipeCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * distributionConfigurationArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteDistributionConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -46,6 +46,9 @@ 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 = {
50
+ * imageBuildVersionArn: "STRING_VALUE", // required
51
+ * };
49
52
  * const command = new DeleteImageCommand(input);
50
53
  * const response = await client.send(command);
51
54
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imagePipelineArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteImagePipelineCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imageRecipeArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteImageRecipeCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * infrastructureConfigurationArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteInfrastructureConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * componentBuildVersionArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetComponentCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * componentArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetComponentPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * containerRecipeArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetContainerRecipeCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * containerRecipeArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetContainerRecipePolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * distributionConfigurationArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetDistributionConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imageBuildVersionArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetImageCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imagePipelineArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetImagePipelineCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imageArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetImagePolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imageRecipeArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetImageRecipeCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * imageRecipeArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetImageRecipePolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * infrastructureConfigurationArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetInfrastructureConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,22 @@ 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 = {
30
+ * name: "STRING_VALUE", // required
31
+ * semanticVersion: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * changeDescription: "STRING_VALUE",
34
+ * type: "BUILD" || "TEST", // required
35
+ * format: "SHELL", // required
36
+ * platform: "Windows" || "Linux", // required
37
+ * data: "STRING_VALUE",
38
+ * uri: "STRING_VALUE",
39
+ * kmsKeyId: "STRING_VALUE",
40
+ * tags: {
41
+ * "<keys>": "STRING_VALUE",
42
+ * },
43
+ * clientToken: "STRING_VALUE", // required
44
+ * };
29
45
  * const command = new ImportComponentCommand(input);
30
46
  * const response = await client.send(command);
31
47
  * ```
@@ -34,6 +34,18 @@ 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 = {
38
+ * name: "STRING_VALUE", // required
39
+ * semanticVersion: "STRING_VALUE", // required
40
+ * description: "STRING_VALUE",
41
+ * platform: "Windows" || "Linux", // required
42
+ * osVersion: "STRING_VALUE",
43
+ * vmImportTaskId: "STRING_VALUE", // required
44
+ * tags: {
45
+ * "<keys>": "STRING_VALUE",
46
+ * },
47
+ * clientToken: "STRING_VALUE", // required
48
+ * };
37
49
  * const command = new ImportVmImageCommand(input);
38
50
  * const response = await client.send(command);
39
51
  * ```
@@ -35,6 +35,11 @@ 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 = {
39
+ * componentVersionArn: "STRING_VALUE", // required
40
+ * maxResults: Number("int"),
41
+ * nextToken: "STRING_VALUE",
42
+ * };
38
43
  * const command = new ListComponentBuildVersionsCommand(input);
39
44
  * const response = await client.send(command);
40
45
  * ```
@@ -37,6 +37,20 @@ 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 = {
41
+ * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
42
+ * filters: [
43
+ * {
44
+ * name: "STRING_VALUE",
45
+ * values: [
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * },
49
+ * ],
50
+ * byName: true || false,
51
+ * maxResults: Number("int"),
52
+ * nextToken: "STRING_VALUE",
53
+ * };
40
54
  * const command = new ListComponentsCommand(input);
41
55
  * const response = await client.send(command);
42
56
  * ```
@@ -26,6 +26,19 @@ 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 = {
30
+ * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
31
+ * filters: [
32
+ * {
33
+ * name: "STRING_VALUE",
34
+ * values: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * },
38
+ * ],
39
+ * maxResults: Number("int"),
40
+ * nextToken: "STRING_VALUE",
41
+ * };
29
42
  * const command = new ListContainerRecipesCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -26,6 +26,18 @@ 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
+ * {
32
+ * name: "STRING_VALUE",
33
+ * values: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * },
37
+ * ],
38
+ * maxResults: Number("int"),
39
+ * nextToken: "STRING_VALUE",
40
+ * };
29
41
  * const command = new ListDistributionConfigurationsCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -26,6 +26,19 @@ 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 = {
30
+ * imageVersionArn: "STRING_VALUE", // required
31
+ * filters: [
32
+ * {
33
+ * name: "STRING_VALUE",
34
+ * values: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * },
38
+ * ],
39
+ * maxResults: Number("int"),
40
+ * nextToken: "STRING_VALUE",
41
+ * };
29
42
  * const command = new ListImageBuildVersionsCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * imageBuildVersionArn: "STRING_VALUE", // required
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListImagePackagesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,19 @@ 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 = {
30
+ * imagePipelineArn: "STRING_VALUE", // required
31
+ * filters: [
32
+ * {
33
+ * name: "STRING_VALUE",
34
+ * values: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * },
38
+ * ],
39
+ * maxResults: Number("int"),
40
+ * nextToken: "STRING_VALUE",
41
+ * };
29
42
  * const command = new ListImagePipelineImagesCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -26,6 +26,18 @@ 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
+ * {
32
+ * name: "STRING_VALUE",
33
+ * values: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * },
37
+ * ],
38
+ * maxResults: Number("int"),
39
+ * nextToken: "STRING_VALUE",
40
+ * };
29
41
  * const command = new ListImagePipelinesCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -26,6 +26,19 @@ 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 = {
30
+ * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
31
+ * filters: [
32
+ * {
33
+ * name: "STRING_VALUE",
34
+ * values: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * },
38
+ * ],
39
+ * maxResults: Number("int"),
40
+ * nextToken: "STRING_VALUE",
41
+ * };
29
42
  * const command = new ListImageRecipesCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -27,6 +27,21 @@ 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 = {
31
+ * owner: "Self" || "Shared" || "Amazon" || "ThirdParty",
32
+ * filters: [
33
+ * {
34
+ * name: "STRING_VALUE",
35
+ * values: [
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * },
39
+ * ],
40
+ * byName: true || false,
41
+ * maxResults: Number("int"),
42
+ * nextToken: "STRING_VALUE",
43
+ * includeDeprecated: true || false,
44
+ * };
30
45
  * const command = new ListImagesCommand(input);
31
46
  * const response = await client.send(command);
32
47
  * ```
@@ -26,6 +26,18 @@ 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
+ * {
32
+ * name: "STRING_VALUE",
33
+ * values: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * },
37
+ * ],
38
+ * maxResults: Number("int"),
39
+ * nextToken: "STRING_VALUE",
40
+ * };
29
41
  * const command = new ListInfrastructureConfigurationsCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * componentArn: "STRING_VALUE", // required
33
+ * policy: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new PutComponentPolicyCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * containerRecipeArn: "STRING_VALUE", // required
31
+ * policy: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new PutContainerRecipePolicyCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * imageArn: "STRING_VALUE", // required
33
+ * policy: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new PutImagePolicyCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * imageRecipeArn: "STRING_VALUE", // required
33
+ * policy: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new PutImageRecipePolicyCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ 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 = {
30
+ * imagePipelineArn: "STRING_VALUE", // required
31
+ * clientToken: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new StartImagePipelineExecutionCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tags: { // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,82 @@ 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 = {
31
+ * distributionConfigurationArn: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * distributions: [ // required
34
+ * {
35
+ * region: "STRING_VALUE", // required
36
+ * amiDistributionConfiguration: {
37
+ * name: "STRING_VALUE",
38
+ * description: "STRING_VALUE",
39
+ * targetAccountIds: [
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * amiTags: {
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * kmsKeyId: "STRING_VALUE",
46
+ * launchPermission: {
47
+ * userIds: [
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * userGroups: [
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * organizationArns: [
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * organizationalUnitArns: [
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * },
60
+ * },
61
+ * containerDistributionConfiguration: {
62
+ * description: "STRING_VALUE",
63
+ * containerTags: [
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * targetRepository: {
67
+ * service: "ECR", // required
68
+ * repositoryName: "STRING_VALUE", // required
69
+ * },
70
+ * },
71
+ * licenseConfigurationArns: [
72
+ * "STRING_VALUE",
73
+ * ],
74
+ * launchTemplateConfigurations: [
75
+ * {
76
+ * launchTemplateId: "STRING_VALUE", // required
77
+ * accountId: "STRING_VALUE",
78
+ * setDefaultVersion: true || false,
79
+ * },
80
+ * ],
81
+ * s3ExportConfiguration: {
82
+ * roleName: "STRING_VALUE", // required
83
+ * diskImageFormat: "VMDK" || "RAW" || "VHD", // required
84
+ * s3Bucket: "STRING_VALUE", // required
85
+ * s3Prefix: "STRING_VALUE",
86
+ * },
87
+ * fastLaunchConfigurations: [
88
+ * {
89
+ * enabled: true || false, // required
90
+ * snapshotConfiguration: {
91
+ * targetResourceCount: Number("int"),
92
+ * },
93
+ * maxParallelLaunches: Number("int"),
94
+ * launchTemplate: {
95
+ * launchTemplateId: "STRING_VALUE",
96
+ * launchTemplateName: "STRING_VALUE",
97
+ * launchTemplateVersion: "STRING_VALUE",
98
+ * },
99
+ * accountId: "STRING_VALUE",
100
+ * },
101
+ * ],
102
+ * },
103
+ * ],
104
+ * clientToken: "STRING_VALUE", // required
105
+ * };
30
106
  * const command = new UpdateDistributionConfigurationCommand(input);
31
107
  * const response = await client.send(command);
32
108
  * ```
@@ -32,6 +32,26 @@ 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 = {
36
+ * imagePipelineArn: "STRING_VALUE", // required
37
+ * description: "STRING_VALUE",
38
+ * imageRecipeArn: "STRING_VALUE",
39
+ * containerRecipeArn: "STRING_VALUE",
40
+ * infrastructureConfigurationArn: "STRING_VALUE", // required
41
+ * distributionConfigurationArn: "STRING_VALUE",
42
+ * imageTestsConfiguration: {
43
+ * imageTestsEnabled: true || false,
44
+ * timeoutMinutes: Number("int"),
45
+ * },
46
+ * enhancedImageMetadataEnabled: true || false,
47
+ * schedule: {
48
+ * scheduleExpression: "STRING_VALUE",
49
+ * timezone: "STRING_VALUE",
50
+ * pipelineExecutionStartCondition: "EXPRESSION_MATCH_ONLY" || "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
51
+ * },
52
+ * status: "DISABLED" || "ENABLED",
53
+ * clientToken: "STRING_VALUE", // required
54
+ * };
35
55
  * const command = new UpdateImagePipelineCommand(input);
36
56
  * const response = await client.send(command);
37
57
  * ```
@@ -27,6 +27,35 @@ 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 = {
31
+ * infrastructureConfigurationArn: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * instanceTypes: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * instanceProfileName: "STRING_VALUE", // required
37
+ * securityGroupIds: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * subnetId: "STRING_VALUE",
41
+ * logging: {
42
+ * s3Logs: {
43
+ * s3BucketName: "STRING_VALUE",
44
+ * s3KeyPrefix: "STRING_VALUE",
45
+ * },
46
+ * },
47
+ * keyPair: "STRING_VALUE",
48
+ * terminateInstanceOnFailure: true || false,
49
+ * snsTopicArn: "STRING_VALUE",
50
+ * clientToken: "STRING_VALUE", // required
51
+ * resourceTags: {
52
+ * "<keys>": "STRING_VALUE",
53
+ * },
54
+ * instanceMetadataOptions: {
55
+ * httpTokens: "STRING_VALUE",
56
+ * httpPutResponseHopLimit: Number("int"),
57
+ * },
58
+ * };
30
59
  * const command = new UpdateInfrastructureConfigurationCommand(input);
31
60
  * const response = await client.send(command);
32
61
  * ```
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.298.0",
4
+ "version": "3.300.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,23 +21,23 @@
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.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.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",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"