import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::EC2::VPCEncryptionControl */ export declare class VpcEncryptionControl extends pulumi.CustomResource { /** * Get an existing VpcEncryptionControl 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): VpcEncryptionControl; /** * Returns true if the given object is an instance of VpcEncryptionControl. 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 VpcEncryptionControl; /** * Used to enable or disable EIGW exclusion */ readonly egressOnlyInternetGatewayExclusionInput: pulumi.Output; /** * Used to enable or disable EFS exclusion */ readonly elasticFileSystemExclusionInput: pulumi.Output; /** * Used to enable or disable IGW exclusion */ readonly internetGatewayExclusionInput: pulumi.Output; /** * Used to enable or disable Lambda exclusion */ readonly lambdaExclusionInput: pulumi.Output; /** * The VPC encryption control mode, either monitor or enforce. */ readonly mode: pulumi.Output; /** * Used to enable or disable Nat gateway exclusion */ readonly natGatewayExclusionInput: pulumi.Output; /** * Enumerates the states of all the VPC encryption control resource exclusions */ readonly resourceExclusions: pulumi.Output; /** * The current state of the VPC encryption control. */ readonly state: pulumi.Output; /** * Provides additional context on the state of the VPC encryption control. */ readonly stateMessage: pulumi.Output; /** * The tags to assign to the VPC encryption control. */ readonly tags: pulumi.Output; /** * Used to enable or disable VGW exclusion */ readonly virtualPrivateGatewayExclusionInput: pulumi.Output; /** * The VPC encryption control resource id. */ readonly vpcEncryptionControlId: pulumi.Output; /** * The VPC on which this VPC encryption control is applied. */ readonly vpcId: pulumi.Output; /** * Used to enable or disable Vpc Lattice exclusion */ readonly vpcLatticeExclusionInput: pulumi.Output; /** * Used to enable or disable VPC peering exclusion */ readonly vpcPeeringExclusionInput: pulumi.Output; /** * Create a VpcEncryptionControl 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?: VpcEncryptionControlArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a VpcEncryptionControl resource. */ export interface VpcEncryptionControlArgs { /** * Used to enable or disable EIGW exclusion */ egressOnlyInternetGatewayExclusionInput?: pulumi.Input; /** * Used to enable or disable EFS exclusion */ elasticFileSystemExclusionInput?: pulumi.Input; /** * Used to enable or disable IGW exclusion */ internetGatewayExclusionInput?: pulumi.Input; /** * Used to enable or disable Lambda exclusion */ lambdaExclusionInput?: pulumi.Input; /** * The VPC encryption control mode, either monitor or enforce. */ mode?: pulumi.Input; /** * Used to enable or disable Nat gateway exclusion */ natGatewayExclusionInput?: pulumi.Input; /** * The tags to assign to the VPC encryption control. */ tags?: pulumi.Input[]>; /** * Used to enable or disable VGW exclusion */ virtualPrivateGatewayExclusionInput?: pulumi.Input; /** * The VPC on which this VPC encryption control is applied. */ vpcId?: pulumi.Input; /** * Used to enable or disable Vpc Lattice exclusion */ vpcLatticeExclusionInput?: pulumi.Input; /** * Used to enable or disable VPC peering exclusion */ vpcPeeringExclusionInput?: pulumi.Input; }