1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package greengrass
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/greengrass/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Retrieves information about a Lambda function definition version, including
15// which Lambda functions are included in the version and their configurations.
16func (c *Client) GetFunctionDefinitionVersion(ctx context.Context, params *GetFunctionDefinitionVersionInput, optFns ...func(*Options)) (*GetFunctionDefinitionVersionOutput, error) {
17	if params == nil {
18		params = &GetFunctionDefinitionVersionInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "GetFunctionDefinitionVersion", params, optFns, addOperationGetFunctionDefinitionVersionMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*GetFunctionDefinitionVersionOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type GetFunctionDefinitionVersionInput struct {
32
33	// The ID of the Lambda function definition.
34	//
35	// This member is required.
36	FunctionDefinitionId *string
37
38	// The ID of the function definition version. This value maps to the ''Version''
39	// property of the corresponding ''VersionInformation'' object, which is returned
40	// by ''ListFunctionDefinitionVersions'' requests. If the version is the last one
41	// that was associated with a function definition, the value also maps to the
42	// ''LatestVersion'' property of the corresponding ''DefinitionInformation''
43	// object.
44	//
45	// This member is required.
46	FunctionDefinitionVersionId *string
47
48	// The token for the next set of results, or ''null'' if there are no additional
49	// results.
50	NextToken *string
51}
52
53type GetFunctionDefinitionVersionOutput struct {
54
55	// The ARN of the function definition version.
56	Arn *string
57
58	// The time, in milliseconds since the epoch, when the function definition version
59	// was created.
60	CreationTimestamp *string
61
62	// Information on the definition.
63	Definition *types.FunctionDefinitionVersion
64
65	// The ID of the function definition version.
66	Id *string
67
68	// The token for the next set of results, or ''null'' if there are no additional
69	// results.
70	NextToken *string
71
72	// The version of the function definition version.
73	Version *string
74
75	// Metadata pertaining to the operation's result.
76	ResultMetadata middleware.Metadata
77}
78
79func addOperationGetFunctionDefinitionVersionMiddlewares(stack *middleware.Stack, options Options) (err error) {
80	err = stack.Serialize.Add(&awsRestjson1_serializeOpGetFunctionDefinitionVersion{}, middleware.After)
81	if err != nil {
82		return err
83	}
84	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpGetFunctionDefinitionVersion{}, middleware.After)
85	if err != nil {
86		return err
87	}
88	if err = addSetLoggerMiddleware(stack, options); err != nil {
89		return err
90	}
91	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
92		return err
93	}
94	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
95		return err
96	}
97	if err = addResolveEndpointMiddleware(stack, options); err != nil {
98		return err
99	}
100	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
101		return err
102	}
103	if err = addRetryMiddlewares(stack, options); err != nil {
104		return err
105	}
106	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
107		return err
108	}
109	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
110		return err
111	}
112	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
113		return err
114	}
115	if err = addClientUserAgent(stack); err != nil {
116		return err
117	}
118	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
119		return err
120	}
121	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
122		return err
123	}
124	if err = addOpGetFunctionDefinitionVersionValidationMiddleware(stack); err != nil {
125		return err
126	}
127	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetFunctionDefinitionVersion(options.Region), middleware.Before); err != nil {
128		return err
129	}
130	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
131		return err
132	}
133	if err = addResponseErrorMiddleware(stack); err != nil {
134		return err
135	}
136	if err = addRequestResponseLogging(stack, options); err != nil {
137		return err
138	}
139	return nil
140}
141
142func newServiceMetadataMiddleware_opGetFunctionDefinitionVersion(region string) *awsmiddleware.RegisterServiceMetadata {
143	return &awsmiddleware.RegisterServiceMetadata{
144		Region:        region,
145		ServiceID:     ServiceID,
146		SigningName:   "greengrass",
147		OperationName: "GetFunctionDefinitionVersion",
148	}
149}
150