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

UpgradePublishedSchemaRequest

import type { UpgradePublishedSchemaRequest } from "https://aws-api.deno.dev/v0.3/services/clouddirectory.ts?docs=full";
interface UpgradePublishedSchemaRequest {
DevelopmentSchemaArn: string;
DryRun?: boolean | null;
MinorVersion: string;
PublishedSchemaArn: string;
}

§Properties

§
DevelopmentSchemaArn: string
[src]

The ARN of the development schema with the changes used for the upgrade.

§
DryRun?: boolean | null
[src]

Used for testing whether the Development schema provided is backwards compatible, or not, with the publish schema provided by the user to be upgraded. If schema compatibility fails, an exception would be thrown else the call would succeed. This parameter is optional and defaults to false.

§
MinorVersion: string
[src]

Identifies the minor version of the published schema that will be created. This parameter is NOT optional.

§
PublishedSchemaArn: string
[src]

The ARN of the published schema to be upgraded.