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 schema for AWS::SecurityHub::ConnectorV2
 */
export declare class ConnectorV2 extends pulumi.CustomResource {
    /**
     * Get an existing ConnectorV2 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): ConnectorV2;
    /**
     * Returns true if the given object is an instance of ConnectorV2.  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 ConnectorV2;
    /**
     * The ARN of the connector
     */
    readonly connectorArn: pulumi.Output<string>;
    /**
     * The ID of the connector
     */
    readonly connectorId: pulumi.Output<string>;
    /**
     * The status of the connector
     */
    readonly connectorStatus: pulumi.Output<enums.securityhub.ConnectorV2ConnectorStatus>;
    /**
     * The timestamp when the V2 connector was created.
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * A description of the connector
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * The ARN of KMS key used for the connector
     */
    readonly kmsKeyArn: pulumi.Output<string | undefined>;
    /**
     * The most recent timestamp when the V2 connector was checked on health status.
     */
    readonly lastCheckedAt: pulumi.Output<string>;
    /**
     * The most recent timestamp when the V2 connector was updated.
     */
    readonly lastUpdatedAt: pulumi.Output<string>;
    /**
     * The message of the connector status change
     */
    readonly message: pulumi.Output<string>;
    /**
     * The name of the connector
     */
    readonly name: pulumi.Output<string>;
    /**
     * The third-party provider detail for a service configuration.
     */
    readonly provider: pulumi.Output<outputs.securityhub.ConnectorV2Provider>;
    /**
     * The tags to add to the connectorV2 when you create.
     */
    readonly tags: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    /**
     * Create a ConnectorV2 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: ConnectorV2Args, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a ConnectorV2 resource.
 */
export interface ConnectorV2Args {
    /**
     * A description of the connector
     */
    description?: pulumi.Input<string>;
    /**
     * The ARN of KMS key used for the connector
     */
    kmsKeyArn?: pulumi.Input<string>;
    /**
     * The name of the connector
     */
    name?: pulumi.Input<string>;
    /**
     * The third-party provider detail for a service configuration.
     */
    provider: pulumi.Input<inputs.securityhub.ConnectorV2ProviderArgs>;
    /**
     * The tags to add to the connectorV2 when you create.
     */
    tags?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
}
