import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of AWS::Proton::EnvironmentTemplate Resource Type */ export declare class EnvironmentTemplate extends pulumi.CustomResource { /** * Get an existing EnvironmentTemplate 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, opts?: pulumi.CustomResourceOptions): EnvironmentTemplate; /** * Returns true if the given object is an instance of EnvironmentTemplate. 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 EnvironmentTemplate; /** *

The Amazon Resource Name (ARN) of the environment template.

*/ readonly arn: pulumi.Output; /** *

A description of the environment template.

*/ readonly description: pulumi.Output; /** *

The environment template name as displayed in the developer interface.

*/ readonly displayName: pulumi.Output; /** *

A customer provided encryption key that Proton uses to encrypt data.

*/ readonly encryptionKey: pulumi.Output; /** * The name of the environment template. */ readonly name: pulumi.Output; /** * When included, indicates that the environment template is for customer provisioned and managed infrastructure. */ readonly provisioning: pulumi.Output; /** *

An optional list of metadata items that you can associate with the Proton environment template. A tag is a key-value pair.

*

For more information, see Proton resources and tagging in the * Proton User Guide.

*/ readonly tags: pulumi.Output; /** * Create a EnvironmentTemplate 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?: EnvironmentTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a EnvironmentTemplate resource. */ export interface EnvironmentTemplateArgs { /** *

A description of the environment template.

*/ description?: pulumi.Input; /** *

The environment template name as displayed in the developer interface.

*/ displayName?: pulumi.Input; /** *

A customer provided encryption key that Proton uses to encrypt data.

*/ encryptionKey?: pulumi.Input; /** * The name of the environment template. */ name?: pulumi.Input; /** * When included, indicates that the environment template is for customer provisioned and managed infrastructure. */ provisioning?: pulumi.Input; /** *

An optional list of metadata items that you can associate with the Proton environment template. A tag is a key-value pair.

*

For more information, see Proton resources and tagging in the * Proton User Guide.

*/ tags?: pulumi.Input[]>; }