1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package mgn
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/aws-sdk-go-v2/service/mgn/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Lists all LaunchConfigurations available, filtered by Source Server IDs.
15func (c *Client) GetLaunchConfiguration(ctx context.Context, params *GetLaunchConfigurationInput, optFns ...func(*Options)) (*GetLaunchConfigurationOutput, error) {
16	if params == nil {
17		params = &GetLaunchConfigurationInput{}
18	}
19
20	result, metadata, err := c.invokeOperation(ctx, "GetLaunchConfiguration", params, optFns, addOperationGetLaunchConfigurationMiddlewares)
21	if err != nil {
22		return nil, err
23	}
24
25	out := result.(*GetLaunchConfigurationOutput)
26	out.ResultMetadata = metadata
27	return out, nil
28}
29
30type GetLaunchConfigurationInput struct {
31
32	// Request to get Launch Configuration information by Source Server ID.
33	//
34	// This member is required.
35	SourceServerID *string
36}
37
38type GetLaunchConfigurationOutput struct {
39
40	// Copy Private IP during Launch Configuration.
41	CopyPrivateIp *bool
42
43	// Copy Tags during Launch Configuration.
44	CopyTags *bool
45
46	// Configure EC2 lauch configuration template ID.
47	Ec2LaunchTemplateID *string
48
49	// Configure launch dispostion for launch configuration.
50	LaunchDisposition types.LaunchDisposition
51
52	// Configure launch configuration OS licensing.
53	Licensing *types.Licensing
54
55	// Configure launch configuration name.
56	Name *string
57
58	// Configure launch configuration Source Server ID.
59	SourceServerID *string
60
61	// Configure launch configuration Target instance type right sizing method.
62	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod
63
64	// Metadata pertaining to the operation's result.
65	ResultMetadata middleware.Metadata
66}
67
68func addOperationGetLaunchConfigurationMiddlewares(stack *middleware.Stack, options Options) (err error) {
69	err = stack.Serialize.Add(&awsRestjson1_serializeOpGetLaunchConfiguration{}, middleware.After)
70	if err != nil {
71		return err
72	}
73	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpGetLaunchConfiguration{}, middleware.After)
74	if err != nil {
75		return err
76	}
77	if err = addSetLoggerMiddleware(stack, options); err != nil {
78		return err
79	}
80	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
81		return err
82	}
83	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
84		return err
85	}
86	if err = addResolveEndpointMiddleware(stack, options); err != nil {
87		return err
88	}
89	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
90		return err
91	}
92	if err = addRetryMiddlewares(stack, options); err != nil {
93		return err
94	}
95	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
96		return err
97	}
98	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
99		return err
100	}
101	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
102		return err
103	}
104	if err = addClientUserAgent(stack); err != nil {
105		return err
106	}
107	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
108		return err
109	}
110	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
111		return err
112	}
113	if err = addOpGetLaunchConfigurationValidationMiddleware(stack); err != nil {
114		return err
115	}
116	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
117		return err
118	}
119	if err = addResponseErrorMiddleware(stack); err != nil {
120		return err
121	}
122	if err = addRequestResponseLogging(stack, options); err != nil {
123		return err
124	}
125	return nil
126}
127