import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
 */
export declare class DataflowEndpointGroupV2 extends pulumi.CustomResource {
    /**
     * Get an existing DataflowEndpointGroupV2 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<pulumi.ID>, opts?: pulumi.CustomResourceOptions): DataflowEndpointGroupV2;
    /**
     * Returns true if the given object is an instance of DataflowEndpointGroupV2.  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 DataflowEndpointGroupV2;
    readonly arn: pulumi.Output<string>;
    readonly awsId: pulumi.Output<string>;
    /**
     * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
     */
    readonly contactPostPassDurationSeconds: pulumi.Output<number | undefined>;
    /**
     * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
     */
    readonly contactPrePassDurationSeconds: pulumi.Output<number | undefined>;
    /**
     * Information about the endpoint details.
     */
    readonly endpointDetails: pulumi.Output<outputs.groundstation.DataflowEndpointGroupV2EndpointDetails[]>;
    /**
     * List of endpoints for the dataflow endpoint group.
     */
    readonly endpoints: pulumi.Output<outputs.groundstation.DataflowEndpointGroupV2CreateEndpointDetails[] | undefined>;
    /**
     * Tags assigned to a resource.
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    /**
     * Create a DataflowEndpointGroupV2 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?: DataflowEndpointGroupV2Args, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a DataflowEndpointGroupV2 resource.
 */
export interface DataflowEndpointGroupV2Args {
    /**
     * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
     */
    contactPostPassDurationSeconds?: pulumi.Input<number>;
    /**
     * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
     */
    contactPrePassDurationSeconds?: pulumi.Input<number>;
    /**
     * List of endpoints for the dataflow endpoint group.
     */
    endpoints?: pulumi.Input<pulumi.Input<inputs.groundstation.DataflowEndpointGroupV2CreateEndpointDetailsArgs>[]>;
    /**
     * Tags assigned to a resource.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
