{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-route53-resolver/refs/heads/main/json-schema/amazon-route53-resolver-openapi-associate-resolver-rule-request-schema.json", "title": "AssociateResolverRuleRequest", "description": "AssociateResolverRuleRequest schema from openapi", "type": "object", "properties": { "ResolverRuleId": { "allOf": [ { "$ref": "#/components/schemas/ResourceId" }, { "description": "The ID of the Resolver rule that you want to associate with the VPC. To list the existing Resolver rules, use ListResolverRules." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "A name for the association that you're creating between a Resolver rule and a VPC." } ] }, "VPCId": { "allOf": [ { "$ref": "#/components/schemas/ResourceId" }, { "description": "The ID of the VPC that you want to associate the Resolver rule with." } ] } }, "required": [ "ResolverRuleId", "VPCId" ] }