import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::EC2::VPCEncryptionControl */ export declare function getVpcEncryptionControl(args: GetVpcEncryptionControlArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetVpcEncryptionControlArgs { /** * The VPC encryption control resource id. */ vpcEncryptionControlId: string; } export interface GetVpcEncryptionControlResult { /** * The VPC encryption control mode, either monitor or enforce. */ readonly mode?: enums.ec2.VpcEncryptionControlMode; /** * Enumerates the states of all the VPC encryption control resource exclusions */ readonly resourceExclusions?: outputs.ec2.VpcEncryptionControlResourceExclusions; /** * The current state of the VPC encryption control. */ readonly state?: enums.ec2.VpcEncryptionControlState; /** * Provides additional context on the state of the VPC encryption control. */ readonly stateMessage?: string; /** * The tags to assign to the VPC encryption control. */ readonly tags?: outputs.Tag[]; /** * The VPC encryption control resource id. */ readonly vpcEncryptionControlId?: string; } /** * Resource Type definition for AWS::EC2::VPCEncryptionControl */ export declare function getVpcEncryptionControlOutput(args: GetVpcEncryptionControlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetVpcEncryptionControlOutputArgs { /** * The VPC encryption control resource id. */ vpcEncryptionControlId: pulumi.Input; }