Skip to content

Commit

Permalink
fix: api-gateway client model comment (#674)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chase Coalwell authored and trivikr committed Jan 7, 2020
1 parent 65740e3 commit 04aac8d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions clients/client-api-gateway/models/index.ts
Expand Up @@ -7326,16 +7326,16 @@ export interface Stage extends $MetadataBearer {

/**
*
* <p>A map that defines the method settings for a <a>Stage</a> resource. Keys (designated as <code>/{method_setting_key</code> below) are method paths defined as <code>{resource_path}/{http_method}</code> for an individual method override, or <code>/\*\/\* </code> for overriding all methods in the stage. <!-- Any forward slash ("/") characters in the <code>resource_path</code> part must be encoded as "~1" as in, for example, <code>~1resource~1sub-resource/GET</code>.--></p>
*
* /
methodSettings ?: { [key: string]: MethodSetting };
* <p>A map that defines the method settings for a <a>Stage</a> resource. Keys (designated as <code>/{method_setting_key</code> below) are method paths defined as <code>{resource_path}/{http_method}</code> for an individual method override, or <code>/\*\/\*</code> for overriding all methods in the stage. <!-- Any forward slash ("/") characters in the <code>resource_path</code> part must be encoded as "~1" as in, for example, <code>~1resource~1sub-resource/GET</code>.--></p>
*
*/
methodSettings?: { [key: string]: MethodSetting };

/**
*
* <p>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.</p>
*
*/
/**
*
* <p>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.</p>
*
*/
stageName?: string;

/**
Expand Down

0 comments on commit 04aac8d

Please sign in to comment.