api_op_GetHealthCheckLastFailureReason.go raw
1 // Code generated by smithy-go-codegen DO NOT EDIT.
2
3 package route53
4
5 import (
6 "context"
7 "fmt"
8 awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
9 "github.com/aws/aws-sdk-go-v2/service/route53/types"
10 "github.com/aws/smithy-go/middleware"
11 smithyhttp "github.com/aws/smithy-go/transport/http"
12 )
13
14 // Gets the reason that a specified health check failed most recently.
15 func (c *Client) GetHealthCheckLastFailureReason(ctx context.Context, params *GetHealthCheckLastFailureReasonInput, optFns ...func(*Options)) (*GetHealthCheckLastFailureReasonOutput, error) {
16 if params == nil {
17 params = &GetHealthCheckLastFailureReasonInput{}
18 }
19
20 result, metadata, err := c.invokeOperation(ctx, "GetHealthCheckLastFailureReason", params, optFns, c.addOperationGetHealthCheckLastFailureReasonMiddlewares)
21 if err != nil {
22 return nil, err
23 }
24
25 out := result.(*GetHealthCheckLastFailureReasonOutput)
26 out.ResultMetadata = metadata
27 return out, nil
28 }
29
30 // A request for the reason that a health check failed most recently.
31 type GetHealthCheckLastFailureReasonInput struct {
32
33 // The ID for the health check for which you want the last failure reason. When
34 // you created the health check, CreateHealthCheck returned the ID in the
35 // response, in the HealthCheckId element.
36 //
37 // If you want to get the last failure reason for a calculated health check, you
38 // must use the Amazon Route 53 console or the CloudWatch console. You can't use
39 // GetHealthCheckLastFailureReason for a calculated health check.
40 //
41 // This member is required.
42 HealthCheckId *string
43
44 noSmithyDocumentSerde
45 }
46
47 // A complex type that contains the response to a GetHealthCheckLastFailureReason
48 // request.
49 type GetHealthCheckLastFailureReasonOutput struct {
50
51 // A list that contains one Observation element for each Amazon Route 53 health
52 // checker that is reporting a last failure reason.
53 //
54 // This member is required.
55 HealthCheckObservations []types.HealthCheckObservation
56
57 // Metadata pertaining to the operation's result.
58 ResultMetadata middleware.Metadata
59
60 noSmithyDocumentSerde
61 }
62
63 func (c *Client) addOperationGetHealthCheckLastFailureReasonMiddlewares(stack *middleware.Stack, options Options) (err error) {
64 if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
65 return err
66 }
67 err = stack.Serialize.Add(&awsRestxml_serializeOpGetHealthCheckLastFailureReason{}, middleware.After)
68 if err != nil {
69 return err
70 }
71 err = stack.Deserialize.Add(&awsRestxml_deserializeOpGetHealthCheckLastFailureReason{}, middleware.After)
72 if err != nil {
73 return err
74 }
75 if err := addProtocolFinalizerMiddlewares(stack, options, "GetHealthCheckLastFailureReason"); err != nil {
76 return fmt.Errorf("add protocol finalizers: %v", err)
77 }
78
79 if err = addlegacyEndpointContextSetter(stack, options); err != nil {
80 return err
81 }
82 if err = addSetLoggerMiddleware(stack, options); err != nil {
83 return err
84 }
85 if err = addClientRequestID(stack); err != nil {
86 return err
87 }
88 if err = addComputeContentLength(stack); err != nil {
89 return err
90 }
91 if err = addResolveEndpointMiddleware(stack, options); err != nil {
92 return err
93 }
94 if err = addComputePayloadSHA256(stack); err != nil {
95 return err
96 }
97 if err = addRetry(stack, options); err != nil {
98 return err
99 }
100 if err = addRawResponseToMetadata(stack); err != nil {
101 return err
102 }
103 if err = addRecordResponseTiming(stack); err != nil {
104 return err
105 }
106 if err = addSpanRetryLoop(stack, options); err != nil {
107 return err
108 }
109 if err = addClientUserAgent(stack, options); err != nil {
110 return err
111 }
112 if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
113 return err
114 }
115 if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
116 return err
117 }
118 if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
119 return err
120 }
121 if err = addTimeOffsetBuild(stack, c); err != nil {
122 return err
123 }
124 if err = addUserAgentRetryMode(stack, options); err != nil {
125 return err
126 }
127 if err = addCredentialSource(stack, options); err != nil {
128 return err
129 }
130 if err = addOpGetHealthCheckLastFailureReasonValidationMiddleware(stack); err != nil {
131 return err
132 }
133 if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetHealthCheckLastFailureReason(options.Region), middleware.Before); err != nil {
134 return err
135 }
136 if err = addRecursionDetection(stack); err != nil {
137 return err
138 }
139 if err = addRequestIDRetrieverMiddleware(stack); err != nil {
140 return err
141 }
142 if err = addResponseErrorMiddleware(stack); err != nil {
143 return err
144 }
145 if err = addRequestResponseLogging(stack, options); err != nil {
146 return err
147 }
148 if err = addDisableHTTPSMiddleware(stack, options); err != nil {
149 return err
150 }
151 if err = addInterceptBeforeRetryLoop(stack, options); err != nil {
152 return err
153 }
154 if err = addInterceptAttempt(stack, options); err != nil {
155 return err
156 }
157 if err = addInterceptors(stack, options); err != nil {
158 return err
159 }
160 return nil
161 }
162
163 func newServiceMetadataMiddleware_opGetHealthCheckLastFailureReason(region string) *awsmiddleware.RegisterServiceMetadata {
164 return &awsmiddleware.RegisterServiceMetadata{
165 Region: region,
166 ServiceID: ServiceID,
167 OperationName: "GetHealthCheckLastFailureReason",
168 }
169 }
170