UNPKG

@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) 737 B
import * as pulumi from "@pulumi/pulumi"; /** * Resource schema for AWS::Personalize::Schema. */ export declare function getSchema(args: GetSchemaArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemaResult>; export interface GetSchemaArgs { /** * Arn for the schema. */ schemaArn: string; } export interface GetSchemaResult { /** * Arn for the schema. */ readonly schemaArn?: string; } /** * Resource schema for AWS::Personalize::Schema. */ export declare function getSchemaOutput(args: GetSchemaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSchemaResult>; export interface GetSchemaOutputArgs { /** * Arn for the schema. */ schemaArn: pulumi.Input<string>; }