1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package ec2
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/smithy-go/middleware"
10	smithyhttp "github.com/aws/smithy-go/transport/http"
11)
12
13// Copies the specified Amazon FPGA Image (AFI) to the current Region.
14func (c *Client) CopyFpgaImage(ctx context.Context, params *CopyFpgaImageInput, optFns ...func(*Options)) (*CopyFpgaImageOutput, error) {
15	if params == nil {
16		params = &CopyFpgaImageInput{}
17	}
18
19	result, metadata, err := c.invokeOperation(ctx, "CopyFpgaImage", params, optFns, addOperationCopyFpgaImageMiddlewares)
20	if err != nil {
21		return nil, err
22	}
23
24	out := result.(*CopyFpgaImageOutput)
25	out.ResultMetadata = metadata
26	return out, nil
27}
28
29type CopyFpgaImageInput struct {
30
31	// The ID of the source AFI.
32	//
33	// This member is required.
34	SourceFpgaImageId *string
35
36	// The Region that contains the source AFI.
37	//
38	// This member is required.
39	SourceRegion *string
40
41	// Unique, case-sensitive identifier that you provide to ensure the idempotency of
42	// the request. For more information, see Ensuring Idempotency
43	// (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html).
44	ClientToken *string
45
46	// The description for the new AFI.
47	Description *string
48
49	// Checks whether you have the required permissions for the action, without
50	// actually making the request, and provides an error response. If you have the
51	// required permissions, the error response is DryRunOperation. Otherwise, it is
52	// UnauthorizedOperation.
53	DryRun bool
54
55	// The name for the new AFI. The default is the name of the source AFI.
56	Name *string
57}
58
59type CopyFpgaImageOutput struct {
60
61	// The ID of the new AFI.
62	FpgaImageId *string
63
64	// Metadata pertaining to the operation's result.
65	ResultMetadata middleware.Metadata
66}
67
68func addOperationCopyFpgaImageMiddlewares(stack *middleware.Stack, options Options) (err error) {
69	err = stack.Serialize.Add(&awsEc2query_serializeOpCopyFpgaImage{}, middleware.After)
70	if err != nil {
71		return err
72	}
73	err = stack.Deserialize.Add(&awsEc2query_deserializeOpCopyFpgaImage{}, 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 = addOpCopyFpgaImageValidationMiddleware(stack); err != nil {
114		return err
115	}
116	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCopyFpgaImage(options.Region), middleware.Before); err != nil {
117		return err
118	}
119	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
120		return err
121	}
122	if err = addResponseErrorMiddleware(stack); err != nil {
123		return err
124	}
125	if err = addRequestResponseLogging(stack, options); err != nil {
126		return err
127	}
128	return nil
129}
130
131func newServiceMetadataMiddleware_opCopyFpgaImage(region string) *awsmiddleware.RegisterServiceMetadata {
132	return &awsmiddleware.RegisterServiceMetadata{
133		Region:        region,
134		ServiceID:     ServiceID,
135		SigningName:   "ec2",
136		OperationName: "CopyFpgaImage",
137	}
138}
139