diff --git a/service/route53/internal/customizations/doc.go b/service/route53/internal/customizations/doc.go index 30b551154bc..46b9bcd4dfb 100644 --- a/service/route53/internal/customizations/doc.go +++ b/service/route53/internal/customizations/doc.go @@ -1,6 +1,7 @@ // Package customizations provides customizations for the Amazon Route53 API client. // // This package provides support for following customizations +// // Process Response Middleware: used for custom error deserializing // // @@ -11,16 +12,17 @@ // ChangeResourceRecordSets operation of Route53. // // Here's a sample error response: -// -// -// -// Tried to create resource record set duplicate.example.com. type A, but it already exists -// -// +// +// +// +// +// Tried to create resource record set duplicate.example.com. type A, but it already exists +// +// // // // The processResponse middleware customizations enables SDK to check for an error -// response starting with `InvalidChangeBatch` tag prior to deserialization. +// response starting with "InvalidChangeBatch" tag prior to deserialization. // // As this check in error response needs to be performed earlier than response // deserialization. Since the behavior of Deserialization is in @@ -29,7 +31,7 @@ // // Middleware layering: // -// HTTP Response -> process response error -> deserialize +// HTTP Response -> process response error -> deserialize // // // In case the returned error response has `InvalidChangeBatch` format, the error is