import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Creates a capacity provider that manages compute resources for Lambda functions */ export declare class CapacityProvider extends pulumi.CustomResource { /** * Get an existing CapacityProvider 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): CapacityProvider; /** * Returns true if the given object is an instance of CapacityProvider. 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 CapacityProvider; readonly arn: pulumi.Output; readonly capacityProviderName: pulumi.Output; /** * The scaling configuration for the capacity provider. */ readonly capacityProviderScalingConfig: pulumi.Output; /** * The instance requirements for compute resources managed by the capacity provider. */ readonly instanceRequirements: pulumi.Output; /** * The ARN of the KMS key used to encrypt the capacity provider's resources. */ readonly kmsKeyArn: pulumi.Output; /** * The permissions configuration for the capacity provider. */ readonly permissionsConfig: pulumi.Output; /** * The current state of the capacity provider. */ readonly state: pulumi.Output; /** * A key-value pair that provides metadata for the capacity provider. */ readonly tags: pulumi.Output; /** * The VPC configuration for the capacity provider. */ readonly vpcConfig: pulumi.Output; /** * Create a CapacityProvider 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: CapacityProviderArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CapacityProvider resource. */ export interface CapacityProviderArgs { capacityProviderName?: pulumi.Input; /** * The scaling configuration for the capacity provider. */ capacityProviderScalingConfig?: pulumi.Input; /** * The instance requirements for compute resources managed by the capacity provider. */ instanceRequirements?: pulumi.Input; /** * The ARN of the KMS key used to encrypt the capacity provider's resources. */ kmsKeyArn?: pulumi.Input; /** * The permissions configuration for the capacity provider. */ permissionsConfig: pulumi.Input; /** * A key-value pair that provides metadata for the capacity provider. */ tags?: pulumi.Input[]>; /** * The VPC configuration for the capacity provider. */ vpcConfig: pulumi.Input; }