1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package rds
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/rds/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Deletes the installation medium for a DB engine that requires an on-premises
15// customer provided license, such as Microsoft SQL Server.
16func (c *Client) DeleteInstallationMedia(ctx context.Context, params *DeleteInstallationMediaInput, optFns ...func(*Options)) (*DeleteInstallationMediaOutput, error) {
17	if params == nil {
18		params = &DeleteInstallationMediaInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "DeleteInstallationMedia", params, optFns, addOperationDeleteInstallationMediaMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*DeleteInstallationMediaOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type DeleteInstallationMediaInput struct {
32
33	// The installation medium ID.
34	//
35	// This member is required.
36	InstallationMediaId *string
37}
38
39// Contains the installation media for a DB engine that requires an on-premises
40// customer provided license, such as Microsoft SQL Server.
41type DeleteInstallationMediaOutput struct {
42
43	// The custom Availability Zone (AZ) that contains the installation media.
44	CustomAvailabilityZoneId *string
45
46	// The DB engine.
47	Engine *string
48
49	// The path to the installation medium for the DB engine.
50	EngineInstallationMediaPath *string
51
52	// The engine version of the DB engine.
53	EngineVersion *string
54
55	// If an installation media failure occurred, the cause of the failure.
56	FailureCause *types.InstallationMediaFailureCause
57
58	// The installation medium ID.
59	InstallationMediaId *string
60
61	// The path to the installation medium for the operating system associated with the
62	// DB engine.
63	OSInstallationMediaPath *string
64
65	// The status of the installation medium.
66	Status *string
67
68	// Metadata pertaining to the operation's result.
69	ResultMetadata middleware.Metadata
70}
71
72func addOperationDeleteInstallationMediaMiddlewares(stack *middleware.Stack, options Options) (err error) {
73	err = stack.Serialize.Add(&awsAwsquery_serializeOpDeleteInstallationMedia{}, middleware.After)
74	if err != nil {
75		return err
76	}
77	err = stack.Deserialize.Add(&awsAwsquery_deserializeOpDeleteInstallationMedia{}, middleware.After)
78	if err != nil {
79		return err
80	}
81	if err = addSetLoggerMiddleware(stack, options); err != nil {
82		return err
83	}
84	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
85		return err
86	}
87	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
88		return err
89	}
90	if err = addResolveEndpointMiddleware(stack, options); err != nil {
91		return err
92	}
93	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
94		return err
95	}
96	if err = addRetryMiddlewares(stack, options); err != nil {
97		return err
98	}
99	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
100		return err
101	}
102	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
103		return err
104	}
105	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
106		return err
107	}
108	if err = addClientUserAgent(stack); err != nil {
109		return err
110	}
111	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
112		return err
113	}
114	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
115		return err
116	}
117	if err = addOpDeleteInstallationMediaValidationMiddleware(stack); err != nil {
118		return err
119	}
120	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDeleteInstallationMedia(options.Region), middleware.Before); err != nil {
121		return err
122	}
123	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
124		return err
125	}
126	if err = addResponseErrorMiddleware(stack); err != nil {
127		return err
128	}
129	if err = addRequestResponseLogging(stack, options); err != nil {
130		return err
131	}
132	return nil
133}
134
135func newServiceMetadataMiddleware_opDeleteInstallationMedia(region string) *awsmiddleware.RegisterServiceMetadata {
136	return &awsmiddleware.RegisterServiceMetadata{
137		Region:        region,
138		ServiceID:     ServiceID,
139		SigningName:   "rds",
140		OperationName: "DeleteInstallationMedia",
141	}
142}
143