import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource schema for AWS::SecurityHub::Connector */ export declare class Connector extends pulumi.CustomResource { /** * Get an existing Connector 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): Connector; /** * Returns true if the given object is an instance of Connector. 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 Connector; /** * The ARN of the connector */ readonly connectorArn: pulumi.Output; /** * The ID of the connector */ readonly connectorId: pulumi.Output; readonly connectorStatus: pulumi.Output; /** * The date and time for createdAt in UTC and ISO 8601 format. */ readonly createdAt: pulumi.Output; /** * The principal that created the connector */ readonly createdBy: pulumi.Output; /** * A description of the connector */ readonly description: pulumi.Output; /** * The enablement status of the connector */ readonly enablementStatus: pulumi.Output; /** * The list of health issues associated with the connector */ readonly issues: pulumi.Output; /** * The date and time for lastCheckedAt in UTC and ISO 8601 format. */ readonly lastCheckedAt: pulumi.Output; /** * The date and time for lastUpdatedAt in UTC and ISO 8601 format. */ readonly lastUpdatedAt: pulumi.Output; /** * The message associated with the connector status change */ readonly message: pulumi.Output; /** * The name of the connector */ readonly name: pulumi.Output; readonly provider: pulumi.Output; readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Connector 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: ConnectorArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Connector resource. */ export interface ConnectorArgs { /** * A description of the connector */ description?: pulumi.Input; /** * The name of the connector */ name?: pulumi.Input; provider: pulumi.Input; tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }