Method: BasePathMapping#create

Defined in:
lib/jets/internal/app/functions/jets/base_path.rb

#createObject



113
114
115
116
117
118
119
120
# File 'lib/jets/internal/app/functions/jets/base_path.rb', line 113

def create
  apigateway.create_base_path_mapping(
    domain_name: @domain_name, # required
    base_path: @base_path,
    rest_api_id: @rest_api_id, # required
    stage: STAGE_NAME,
  )
end