Class: Aws::APIGateway::Types::GetModelTemplateRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::GetModelTemplateRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to generate a sample mapping template used to transform the payload.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #model_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the model for which to generate a template. 
- 
  
    
      #rest_api_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The string identifier of the associated RestApi. 
Instance Attribute Details
#model_name ⇒ String
The name of the model for which to generate a template.
| 2917 2918 2919 2920 2921 2922 | # File 'lib/aws-sdk-apigateway/types.rb', line 2917 class GetModelTemplateRequest < Struct.new( :rest_api_id, :model_name) SENSITIVE = [] include Aws::Structure end | 
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
| 2917 2918 2919 2920 2921 2922 | # File 'lib/aws-sdk-apigateway/types.rb', line 2917 class GetModelTemplateRequest < Struct.new( :rest_api_id, :model_name) SENSITIVE = [] include Aws::Structure end |