Class: Aws::APIGateway::Types::GetModelRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Note:

When making an API call, you may pass GetModelRequest data as a hash:

{
  rest_api_id: "String", # required
  model_name: "String", # required
  flatten: false,
}

Request to list information about a model in an existing RestApi resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#flattenBoolean

A query parameter of a Boolean value to resolve (‘true`) all external model references and returns a flattened model schema or not (`false`) The default is `false`.

Returns:

  • (Boolean)


3839
3840
3841
3842
3843
3844
3845
# File 'lib/aws-sdk-apigateway/types.rb', line 3839

class GetModelRequest < Struct.new(
  :rest_api_id,
  :model_name,
  :flatten)
  SENSITIVE = []
  include Aws::Structure
end

#model_nameString

[Required] The name of the model as an identifier.

Returns:

  • (String)


3839
3840
3841
3842
3843
3844
3845
# File 'lib/aws-sdk-apigateway/types.rb', line 3839

class GetModelRequest < Struct.new(
  :rest_api_id,
  :model_name,
  :flatten)
  SENSITIVE = []
  include Aws::Structure
end

#rest_api_idString

[Required] The RestApi identifier under which the Model exists.

Returns:

  • (String)


3839
3840
3841
3842
3843
3844
3845
# File 'lib/aws-sdk-apigateway/types.rb', line 3839

class GetModelRequest < Struct.new(
  :rest_api_id,
  :model_name,
  :flatten)
  SENSITIVE = []
  include Aws::Structure
end