From 04aac8d28ab84264ece5e659260a2071bc26737a Mon Sep 17 00:00:00 2001 From: Chase Coalwell Date: Tue, 7 Jan 2020 09:50:41 -0800 Subject: [PATCH] fix: api-gateway client model comment (#674) --- clients/client-api-gateway/models/index.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/clients/client-api-gateway/models/index.ts b/clients/client-api-gateway/models/index.ts index 590891424b1d..bd709b86a9a9 100644 --- a/clients/client-api-gateway/models/index.ts +++ b/clients/client-api-gateway/models/index.ts @@ -7326,16 +7326,16 @@ export interface Stage extends $MetadataBearer { /** * - *

A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key below) are method paths defined as {resource_path}/{http_method} for an individual method override, or /\*\/\* for overriding all methods in the stage.

- * - * / -methodSettings ?: { [key: string]: MethodSetting }; + *

A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key below) are method paths defined as {resource_path}/{http_method} for an individual method override, or /\*\/\* for overriding all methods in the stage.

+ * + */ + methodSettings?: { [key: string]: MethodSetting }; -/** - * - *

The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.

- * - */ + /** + * + *

The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.

+ * + */ stageName?: string; /**