@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)
109 lines (108 loc) • 4.05 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Create and manage form types in Amazon Datazone
*/
export declare class FormType extends pulumi.CustomResource {
/**
* Get an existing FormType resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): FormType;
/**
* Returns true if the given object is an instance of FormType. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is FormType;
/**
* The timestamp of when this Amazon DataZone metadata form type was created.
*/
readonly createdAt: pulumi.Output<string>;
/**
* The user who created this Amazon DataZone metadata form type.
*/
readonly createdBy: pulumi.Output<string>;
/**
* The description of this Amazon DataZone metadata form type.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The ID of the Amazon DataZone domain in which this metadata form type is created.
*/
readonly domainId: pulumi.Output<string>;
/**
* The ID of the Amazon DataZone domain in which this metadata form type is created.
*/
readonly domainIdentifier: pulumi.Output<string>;
/**
* The ID of this Amazon DataZone metadata form type.
*/
readonly formTypeIdentifier: pulumi.Output<string>;
/**
* The model of this Amazon DataZone metadata form type.
*/
readonly model: pulumi.Output<outputs.datazone.FormTypeModel>;
/**
* The name of this Amazon DataZone metadata form type.
*/
readonly name: pulumi.Output<string>;
/**
* The ID of the project that owns this Amazon DataZone metadata form type.
*/
readonly owningProjectId: pulumi.Output<string>;
/**
* The ID of the Amazon DataZone project that owns this metadata form type.
*/
readonly owningProjectIdentifier: pulumi.Output<string>;
/**
* The revision of this Amazon DataZone metadata form type.
*/
readonly revision: pulumi.Output<string>;
/**
* The status of this Amazon DataZone metadata form type.
*/
readonly status: pulumi.Output<enums.datazone.FormTypeStatus | undefined>;
/**
* Create a FormType resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: FormTypeArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a FormType resource.
*/
export interface FormTypeArgs {
/**
* The description of this Amazon DataZone metadata form type.
*/
description?: pulumi.Input<string>;
/**
* The ID of the Amazon DataZone domain in which this metadata form type is created.
*/
domainIdentifier: pulumi.Input<string>;
/**
* The model of this Amazon DataZone metadata form type.
*/
model: pulumi.Input<inputs.datazone.FormTypeModelArgs>;
/**
* The name of this Amazon DataZone metadata form type.
*/
name?: pulumi.Input<string>;
/**
* The ID of the Amazon DataZone project that owns this metadata form type.
*/
owningProjectIdentifier: pulumi.Input<string>;
/**
* The status of this Amazon DataZone metadata form type.
*/
status?: pulumi.Input<enums.datazone.FormTypeStatus>;
}