AssociateResolverRuleRequest

AssociateResolverRuleRequest schema from openapi

DNSHybrid CloudNetworking

Properties

Name Type Description
ResolverRuleId object
Name object
VPCId object
View JSON Schema on GitHub

JSON Schema

amazon-route53-resolver-openapi-associate-resolver-rule-request-schema.json Raw ↑
{
  "$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 <a href=\"https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_ListResolverRules.html\">ListResolverRules</a>."
        }
      ]
    },
    "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"
  ]
}