@aws-sdk/client-imagebuilder 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Imagebuilder.d.ts +51 -0
- package/dist-types/ImagebuilderClient.d.ts +24 -4
- package/dist-types/commands/CancelImageCreationCommand.d.ts +16 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetImageCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ImportComponentCommand.d.ts +16 -0
- package/dist-types/commands/ImportVmImageCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListImageRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/models/ImagebuilderServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +403 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListComponentBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDistributionConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelineImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInfrastructureConfigurationsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { CreateDistributionConfigurationRequest, CreateDistributionConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDistributionConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDistributionConfigurationCommandInput extends CreateDistributionConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDistributionConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDistributionConfigurationCommandOutput extends CreateDistributionConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new distribution configuration. Distribution configurations define and configure
|
|
18
23
|
* the outputs of your pipeline.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateDistributionConfigurationCommandOutput extends CreateDist
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateDistributionConfigurationCommandInput - {@link CreateDistributionConfigurationCommandInput}
|
|
35
|
+
* @returns {@link CreateDistributionConfigurationCommandOutput}
|
|
29
36
|
* @see {@link CreateDistributionConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateDistributionConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -73,11 +80,20 @@ export interface CreateDistributionConfigurationCommandOutput extends CreateDist
|
|
|
73
80
|
export declare class CreateDistributionConfigurationCommand extends $Command<CreateDistributionConfigurationCommandInput, CreateDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
74
81
|
readonly input: CreateDistributionConfigurationCommandInput;
|
|
75
82
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
constructor(input: CreateDistributionConfigurationCommandInput);
|
|
77
87
|
/**
|
|
78
88
|
* @internal
|
|
79
89
|
*/
|
|
80
90
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDistributionConfigurationCommandInput, CreateDistributionConfigurationCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
81
94
|
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
82
98
|
private deserialize;
|
|
83
99
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { CreateImageRequest, CreateImageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateImageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateImageCommandInput extends CreateImageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateImageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateImageCommandOutput extends CreateImageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Creates a new image. This request will create a new image along with all of the
|
|
18
23
|
* configured output resources defined in the distribution configuration. You must specify
|
|
19
24
|
* exactly one recipe for your image, using either a ContainerRecipeArn or an ImageRecipeArn.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateImageCommandInput - {@link CreateImageCommandInput}
|
|
36
|
+
* @returns {@link CreateImageCommandOutput}
|
|
30
37
|
* @see {@link CreateImageCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateImageCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat
|
|
|
67
74
|
export declare class CreateImageCommand extends $Command<CreateImageCommandInput, CreateImageCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
68
75
|
readonly input: CreateImageCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: CreateImageCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateImageCommandInput, CreateImageCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { CreateImagePipelineRequest, CreateImagePipelineResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateImagePipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateImagePipelineCommandInput extends CreateImagePipelineRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateImagePipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateImagePipelineCommandOutput extends CreateImagePipelineResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Creates a new image pipeline. Image pipelines enable you to automate the creation and
|
|
18
23
|
* distribution of images.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateImagePipelineCommandInput - {@link CreateImagePipelineCommandInput}
|
|
35
|
+
* @returns {@link CreateImagePipelineCommandOutput}
|
|
29
36
|
* @see {@link CreateImagePipelineCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateImagePipelineCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes
|
|
|
69
76
|
export declare class CreateImagePipelineCommand extends $Command<CreateImagePipelineCommandInput, CreateImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
70
77
|
readonly input: CreateImagePipelineCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: CreateImagePipelineCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateImagePipelineCommandInput, CreateImagePipelineCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { CreateImageRecipeRequest, CreateImageRecipeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateImageRecipeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateImageRecipeCommandInput extends CreateImageRecipeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateImageRecipeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateImageRecipeCommandOutput extends CreateImageRecipeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Creates a new image recipe. Image recipes define how images are configured, tested, and
|
|
18
23
|
* assessed.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateImageRecipeCommandInput - {@link CreateImageRecipeCommandInput}
|
|
35
|
+
* @returns {@link CreateImageRecipeCommandOutput}
|
|
29
36
|
* @see {@link CreateImageRecipeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateImageRecipeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
|
|
|
72
79
|
export declare class CreateImageRecipeCommand extends $Command<CreateImageRecipeCommandInput, CreateImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
73
80
|
readonly input: CreateImageRecipeCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: CreateImageRecipeCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateImageRecipeCommandInput, CreateImageRecipeCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { CreateInfrastructureConfigurationRequest, CreateInfrastructureConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateInfrastructureConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateInfrastructureConfigurationCommandInput extends CreateInfrastructureConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateInfrastructureConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateInfrastructureConfigurationCommandOutput extends CreateInfrastructureConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Creates a new infrastructure configuration. An infrastructure configuration defines the
|
|
18
23
|
* environment in which your image will be built and tested.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateInfrastructureConfigurationCommandInput - {@link CreateInfrastructureConfigurationCommandInput}
|
|
35
|
+
* @returns {@link CreateInfrastructureConfigurationCommandOutput}
|
|
29
36
|
* @see {@link CreateInfrastructureConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateInfrastructureConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
|
|
|
69
76
|
export declare class CreateInfrastructureConfigurationCommand extends $Command<CreateInfrastructureConfigurationCommandInput, CreateInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
70
77
|
readonly input: CreateInfrastructureConfigurationCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: CreateInfrastructureConfigurationCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateInfrastructureConfigurationCommandInput, CreateInfrastructureConfigurationCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteComponentCommandInput extends DeleteComponentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteComponentCommandOutput extends DeleteComponentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Deletes a component build version.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteComponentCommandInput - {@link DeleteComponentCommandInput}
|
|
34
|
+
* @returns {@link DeleteComponentCommandOutput}
|
|
28
35
|
* @see {@link DeleteComponentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteComponentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
|
|
|
58
65
|
export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteComponentCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteComponentCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentCommandInput, DeleteComponentCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteContainerRecipeRequest, DeleteContainerRecipeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteContainerRecipeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteContainerRecipeCommandInput extends DeleteContainerRecipeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteContainerRecipeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecipeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a container recipe.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteContainerRecipeCommandInput - {@link DeleteContainerRecipeCommandInput}
|
|
34
|
+
* @returns {@link DeleteContainerRecipeCommandOutput}
|
|
28
35
|
* @see {@link DeleteContainerRecipeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteContainerRecipeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip
|
|
|
58
65
|
export declare class DeleteContainerRecipeCommand extends $Command<DeleteContainerRecipeCommandInput, DeleteContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteContainerRecipeCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteContainerRecipeCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContainerRecipeCommandInput, DeleteContainerRecipeCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteDistributionConfigurationRequest, DeleteDistributionConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDistributionConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDistributionConfigurationCommandInput extends DeleteDistributionConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDistributionConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDistributionConfigurationCommandOutput extends DeleteDistributionConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Deletes a distribution configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteDistributionConfigurationCommandOutput extends DeleteDist
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDistributionConfigurationCommandInput - {@link DeleteDistributionConfigurationCommandInput}
|
|
34
|
+
* @returns {@link DeleteDistributionConfigurationCommandOutput}
|
|
28
35
|
* @see {@link DeleteDistributionConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDistributionConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteDistributionConfigurationCommandOutput extends DeleteDist
|
|
|
58
65
|
export declare class DeleteDistributionConfigurationCommand extends $Command<DeleteDistributionConfigurationCommandInput, DeleteDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteDistributionConfigurationCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteDistributionConfigurationCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDistributionConfigurationCommandInput, DeleteDistributionConfigurationCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteImageRequest, DeleteImageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteImageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteImageCommandInput extends DeleteImageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteImageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteImageCommandOutput extends DeleteImageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Image Builder image resource. This does not delete any EC2 AMIs or ECR container images
|
|
18
23
|
* that are created during the image build process. You must clean those up separately,
|
|
19
24
|
* using the appropriate Amazon EC2 or Amazon ECR console actions, or API or CLI commands.</p>
|
|
@@ -45,6 +50,8 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat
|
|
|
45
50
|
* const response = await client.send(command);
|
|
46
51
|
* ```
|
|
47
52
|
*
|
|
53
|
+
* @param DeleteImageCommandInput - {@link DeleteImageCommandInput}
|
|
54
|
+
* @returns {@link DeleteImageCommandOutput}
|
|
48
55
|
* @see {@link DeleteImageCommandInput} for command's `input` shape.
|
|
49
56
|
* @see {@link DeleteImageCommandOutput} for command's `response` shape.
|
|
50
57
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat
|
|
|
78
85
|
export declare class DeleteImageCommand extends $Command<DeleteImageCommandInput, DeleteImageCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
79
86
|
readonly input: DeleteImageCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: DeleteImageCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteImageCommandInput, DeleteImageCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteImagePipelineRequest, DeleteImagePipelineResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteImagePipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteImagePipelineCommandInput extends DeleteImagePipelineRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteImagePipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Deletes an image pipeline.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteImagePipelineCommandInput - {@link DeleteImagePipelineCommandInput}
|
|
34
|
+
* @returns {@link DeleteImagePipelineCommandOutput}
|
|
28
35
|
* @see {@link DeleteImagePipelineCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteImagePipelineCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes
|
|
|
58
65
|
export declare class DeleteImagePipelineCommand extends $Command<DeleteImagePipelineCommandInput, DeleteImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteImagePipelineCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteImagePipelineCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteImagePipelineCommandInput, DeleteImagePipelineCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteImageRecipeRequest, DeleteImageRecipeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteImageRecipeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteImageRecipeCommandInput extends DeleteImageRecipeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteImageRecipeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Deletes an image recipe.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteImageRecipeCommandInput - {@link DeleteImageRecipeCommandInput}
|
|
34
|
+
* @returns {@link DeleteImageRecipeCommandOutput}
|
|
28
35
|
* @see {@link DeleteImageRecipeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteImageRecipeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons
|
|
|
58
65
|
export declare class DeleteImageRecipeCommand extends $Command<DeleteImageRecipeCommandInput, DeleteImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteImageRecipeCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteImageRecipeCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteImageRecipeCommandInput, DeleteImageRecipeCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { DeleteInfrastructureConfigurationRequest, DeleteInfrastructureConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteInfrastructureConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteInfrastructureConfigurationCommandInput extends DeleteInfrastructureConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteInfrastructureConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteInfrastructureConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Deletes an infrastructure configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteIn
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteInfrastructureConfigurationCommandInput - {@link DeleteInfrastructureConfigurationCommandInput}
|
|
34
|
+
* @returns {@link DeleteInfrastructureConfigurationCommandOutput}
|
|
28
35
|
* @see {@link DeleteInfrastructureConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteInfrastructureConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteIn
|
|
|
58
65
|
export declare class DeleteInfrastructureConfigurationCommand extends $Command<DeleteInfrastructureConfigurationCommandInput, DeleteInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteInfrastructureConfigurationCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteInfrastructureConfigurationCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteInfrastructureConfigurationCommandInput, DeleteInfrastructureConfigurationCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetComponentRequest, GetComponentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetComponentCommandInput extends GetComponentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetComponentCommandOutput extends GetComponentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets a component object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetComponentCommandInput - {@link GetComponentCommandInput}
|
|
34
|
+
* @returns {@link GetComponentCommandOutput}
|
|
28
35
|
* @see {@link GetComponentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetComponentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
|
|
|
54
61
|
export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetComponentCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetComponentCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|