/* 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::ResolverQueryLoggingConfig. */ export interface AwsRoute53ResolverResolverqueryloggingconfig { /** * ResourceId */ Id?: string; /** * AccountId */ OwnerId?: string; /** * ResolverQueryLogConfigStatus, possible values are CREATING, CREATED, DELETED AND FAILED. */ Status?: "CREATING" | "CREATED" | "DELETING" | "FAILED"; /** * ShareStatus, possible values are NOT_SHARED, SHARED_WITH_ME, SHARED_BY_ME. */ ShareStatus?: "NOT_SHARED" | "SHARED_WITH_ME" | "SHARED_BY_ME"; /** * Count */ AssociationCount?: number; /** * Arn */ Arn?: string; /** * ResolverQueryLogConfigName */ Name?: string; /** * The id of the creator request. */ CreatorRequestId?: string; /** * destination arn */ DestinationArn?: string; /** * Rfc3339TimeString */ CreationTime?: string; }