Skip to main content

aws_api_gateway_v2_model resource

[edit on GitHub]

Use the aws_api_gateway_v2_model InSpec audit resource to test the properties of a specific AWS API Gateway V2 Model.

For additional information, including parameters and properties, see the AWS documentation on AWS APIGatewayV2 Model.

Installation

This resource is available in the Chef InSpec AWS resource pack.

See the Chef InSpec documentation on cloud platforms for information on configuring your AWS environment for InSpec and creating an InSpec profile that uses the InSpec AWS resource pack.

Syntax

Ensure that the model exists.

describe aws_api_gateway_v2_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  it { should exist }
end

Parameters

api_id (required)
The API identifier.
model_id (required)
The model identifier.

Properties

content_type
The content-type for the model, for example, “application/json”.
description
The description of the model.
model_id
The model identifier.
name
The name of the model. Must be alphanumeric.
schema
The schema for the model.

Examples

Test to ensure a model ID is available

describe aws_api_gateway_v2_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  its('model_id') { should eq 'MODEL_ID' }
end

Verify the model name

describe aws_api_gateway_v2_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  its('name') { should eq 'MODEL_NAME' }
end

Verify the model description

describe aws_api_gateway_v2_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  its('description') { should eq 'MODEL_DESCRIPTION' }
end

Verify the model content type

describe aws_api_gateway_v2_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  its('content_type') { should eq 'application/json' }
end

Matchers

This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit 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_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  it { should exist }
end

Use should_not to test that the entity does not exist.

describe aws_api_gateway_v2_model(api_id: 'APP_ID', model_id: 'MODEL_ID') do
  it { should_not exist }
end

AWS Permissions

Your Principal will need the APIGatewayv2:Client:GetModelResponse action with Effect set to Allow.

Was this page helpful?

×









Search Results