/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource schema for AWS::Route53Resolver::ResolverConfig. */ export interface AwsRoute53ResolverResolverconfig { /** * Id */ Id?: string; /** * AccountId */ OwnerId?: string; /** * ResourceId */ ResourceId: string; /** * ResolverAutodefinedReverseStatus, possible values are ENABLING, ENABLED, DISABLING AND DISABLED. */ AutodefinedReverse?: "ENABLING" | "ENABLED" | "DISABLING" | "DISABLED"; /** * Represents the desired status of AutodefinedReverse. The only supported value on creation is DISABLE. Deletion of this resource will return AutodefinedReverse to its default value (ENABLED). */ AutodefinedReverseFlag: "DISABLE"; }