import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Represents the resource definition of AWS IoT Command. */ export declare class Command extends pulumi.CustomResource { /** * Get an existing Command 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): Command; /** * Returns true if the given object is an instance of Command. 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 Command; /** * The Amazon Resource Name (ARN) of the command. */ readonly commandArn: pulumi.Output; /** * The unique identifier for the command. */ readonly commandId: pulumi.Output; /** * The date and time when the command was created. */ readonly createdAt: pulumi.Output; /** * A flag indicating whether the command is deprecated. */ readonly deprecated: pulumi.Output; /** * The description of the command. */ readonly description: pulumi.Output; /** * The display name for the command. */ readonly displayName: pulumi.Output; /** * The date and time when the command was last updated. */ readonly lastUpdatedAt: pulumi.Output; /** * The list of mandatory parameters for the command. */ readonly mandatoryParameters: pulumi.Output; /** * The namespace to which the command belongs. */ readonly namespace: pulumi.Output; /** * The payload associated with the command. */ readonly payload: pulumi.Output; /** * The payload template associated with the command. */ readonly payloadTemplate: pulumi.Output; /** * A flag indicating whether the command is pending deletion. */ readonly pendingDeletion: pulumi.Output; /** * The command preprocessor configuration. */ readonly preprocessor: pulumi.Output; /** * The customer role associated with the command. */ readonly roleArn: pulumi.Output; /** * The tags to be associated with the command. */ readonly tags: pulumi.Output; /** * Create a Command 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: CommandArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Command resource. */ export interface CommandArgs { /** * The unique identifier for the command. */ commandId: pulumi.Input; /** * The date and time when the command was created. */ createdAt?: pulumi.Input; /** * A flag indicating whether the command is deprecated. */ deprecated?: pulumi.Input; /** * The description of the command. */ description?: pulumi.Input; /** * The display name for the command. */ displayName?: pulumi.Input; /** * The date and time when the command was last updated. */ lastUpdatedAt?: pulumi.Input; /** * The list of mandatory parameters for the command. */ mandatoryParameters?: pulumi.Input[]>; /** * The namespace to which the command belongs. */ namespace?: pulumi.Input; /** * The payload associated with the command. */ payload?: pulumi.Input; /** * The payload template associated with the command. */ payloadTemplate?: pulumi.Input; /** * A flag indicating whether the command is pending deletion. */ pendingDeletion?: pulumi.Input; /** * The command preprocessor configuration. */ preprocessor?: pulumi.Input; /** * The customer role associated with the command. */ roleArn?: pulumi.Input; /** * The tags to be associated with the command. */ tags?: pulumi.Input[]>; }