@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
28 lines (27 loc) • 1.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This resource represents an individual schema version of a schema defined in Glue Schema Registry.
*/
export declare function getSchemaVersion(args: GetSchemaVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemaVersionResult>;
export interface GetSchemaVersionArgs {
/**
* Represents the version ID associated with the schema version.
*/
versionId: string;
}
export interface GetSchemaVersionResult {
/**
* Represents the version ID associated with the schema version.
*/
readonly versionId?: string;
}
/**
* This resource represents an individual schema version of a schema defined in Glue Schema Registry.
*/
export declare function getSchemaVersionOutput(args: GetSchemaVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSchemaVersionResult>;
export interface GetSchemaVersionOutputArgs {
/**
* Represents the version ID associated with the schema version.
*/
versionId: pulumi.Input<string>;
}