aws_api_gateway_v2_models resource
Use the aws_api_gateway_v2_models InSpec audit resource to test the properties of multiple AWS API Gateway V2 models.
For additional information, including parameters and properties, see the AWS documentation on AWS APIGatewayV2 Model.
Syntax
Ensure that the model exists.
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
it { should exist }
end
Parameters
api_id(required)- The API identifier.
Properties
content_types- The content-type for the model, for example, application/json.
Field:
content_typedescriptions- The description of the model.
Field:
descriptionmodel_ids- The model identifier.
Field:
model_idnames- The name of the model. Must be alphanumeric.
Field:
nameschemas- The schema for the model. For application/json models, this should be JSON schema draft 4 model.
Field:
schema
Examples
Test to ensure a model ID is available
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
its('model_ids') { should include 'MODEL_ID' }
end
Test to verify the model name
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
its('names') { should include 'MODEL_NAME' }
end
Test to verify the model description
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
its('descriptions') { should include 'MODEL_DESCRIPTION' }
end
Test to verify the model content type is ‘application/json’
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
its('content_types') { should include 'application/json' }
end
Matchers
For a full list of available matchers, see our Universal Matchers page.The control passes if the get method returns at least one result.
exist
Use should to test that the entity exists.
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
it { should exist }
end
not exist
Use should_not to test that the entity does not exist.
describe aws_api_gateway_v2_models(api_id: 'APP_ID') do
it { should_not exist }
end
AWS Permissions
Your AWS principal will need the APIGatewayv2:Client:GetModelsResponse action with Effect set to Allow.