import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * AWS::EC2::TransitGatewayMeteringPolicyEntry Resource Definition */ export declare class TransitGatewayMeteringPolicyEntry extends pulumi.CustomResource { /** * Get an existing TransitGatewayMeteringPolicyEntry 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): TransitGatewayMeteringPolicyEntry; /** * Returns true if the given object is an instance of TransitGatewayMeteringPolicyEntry. 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 TransitGatewayMeteringPolicyEntry; /** * The list of IP addresses of the instances receiving traffic from the transit gateway */ readonly destinationCidrBlock: pulumi.Output; /** * The list of ports on destination instances receiving traffic from the transit gateway */ readonly destinationPortRange: pulumi.Output; /** * The ID of the source attachment through which traffic leaves a transit gateway */ readonly destinationTransitGatewayAttachmentId: pulumi.Output; /** * The type of the attachment through which traffic leaves a transit gateway */ readonly destinationTransitGatewayAttachmentType: pulumi.Output; /** * The resource owner information responsible for paying default billable charges for the traffic flow */ readonly meteredAccount: pulumi.Output; /** * The rule number of the metering policy entry */ readonly policyRuleNumber: pulumi.Output; /** * The protocol of the traffic */ readonly protocol: pulumi.Output; /** * The list of IP addresses of the instances sending traffic to the transit gateway for which the metering policy entry is applicable */ readonly sourceCidrBlock: pulumi.Output; /** * The list of ports on source instances sending traffic to the transit gateway */ readonly sourcePortRange: pulumi.Output; /** * The ID of the source attachment through which traffic enters a transit gateway */ readonly sourceTransitGatewayAttachmentId: pulumi.Output; /** * The type of the attachment through which traffic enters a transit gateway */ readonly sourceTransitGatewayAttachmentType: pulumi.Output; /** * State of the transit gateway metering policy */ readonly state: pulumi.Output; /** * The ID of the transit gateway metering policy for which the entry is being created */ readonly transitGatewayMeteringPolicyId: pulumi.Output; /** * The timestamp at which the latest action performed on the metering policy entry will become effective */ readonly updateEffectiveAt: pulumi.Output; /** * Create a TransitGatewayMeteringPolicyEntry 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: TransitGatewayMeteringPolicyEntryArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a TransitGatewayMeteringPolicyEntry resource. */ export interface TransitGatewayMeteringPolicyEntryArgs { /** * The list of IP addresses of the instances receiving traffic from the transit gateway */ destinationCidrBlock?: pulumi.Input; /** * The list of ports on destination instances receiving traffic from the transit gateway */ destinationPortRange?: pulumi.Input; /** * The ID of the source attachment through which traffic leaves a transit gateway */ destinationTransitGatewayAttachmentId?: pulumi.Input; /** * The type of the attachment through which traffic leaves a transit gateway */ destinationTransitGatewayAttachmentType?: pulumi.Input; /** * The resource owner information responsible for paying default billable charges for the traffic flow */ meteredAccount: pulumi.Input; /** * The rule number of the metering policy entry */ policyRuleNumber: pulumi.Input; /** * The protocol of the traffic */ protocol?: pulumi.Input; /** * The list of IP addresses of the instances sending traffic to the transit gateway for which the metering policy entry is applicable */ sourceCidrBlock?: pulumi.Input; /** * The list of ports on source instances sending traffic to the transit gateway */ sourcePortRange?: pulumi.Input; /** * The ID of the source attachment through which traffic enters a transit gateway */ sourceTransitGatewayAttachmentId?: pulumi.Input; /** * The type of the attachment through which traffic enters a transit gateway */ sourceTransitGatewayAttachmentType?: pulumi.Input; /** * The ID of the transit gateway metering policy for which the entry is being created */ transitGatewayMeteringPolicyId: pulumi.Input; }