Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BackendAPIResourceConfig

import type { BackendAPIResourceConfig } from "https://aws-api.deno.dev/v0.3/services/amplifybackend.ts?docs=full";

The resource config for the data model, configured as a part of the Amplify project.

interface BackendAPIResourceConfig {
AdditionalAuthTypes?: BackendAPIAuthType[] | null;
ApiName?: string | null;
ConflictResolution?: BackendAPIConflictResolution | null;
DefaultAuthType?: BackendAPIAuthType | null;
Service?: string | null;
TransformSchema?: string | null;
}

§Properties

§
AdditionalAuthTypes?: BackendAPIAuthType[] | null
[src]

Additional authentication methods used to interact with your data models.

§
ApiName?: string | null
[src]

The API name used to interact with the data model, configured as a part of your Amplify project.

§
ConflictResolution?: BackendAPIConflictResolution | null
[src]

The conflict resolution strategy for your data stored in the data models.

§
DefaultAuthType?: BackendAPIAuthType | null
[src]

The default authentication type for interacting with the configured data models in your Amplify project.

§
Service?: string | null
[src]

The service used to provision and interact with the data model.

§
TransformSchema?: string | null
[src]

The definition of the data model in the annotated transform of the GraphQL schema.