import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::SecurityHub::Connector */ export declare function getConnector(args: GetConnectorArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConnectorArgs { /** * The ARN of the connector */ connectorArn: string; } export interface GetConnectorResult { /** * The ARN of the connector */ readonly connectorArn?: string; /** * The ID of the connector */ readonly connectorId?: string; readonly connectorStatus?: string; /** * The date and time for createdAt in UTC and ISO 8601 format. */ readonly createdAt?: string; /** * The principal that created the connector */ readonly createdBy?: string; /** * A description of the connector */ readonly description?: string; /** * The enablement status of the connector */ readonly enablementStatus?: string; /** * The list of health issues associated with the connector */ readonly issues?: outputs.securityhub.ConnectorHealthIssue[]; /** * The date and time for lastCheckedAt in UTC and ISO 8601 format. */ readonly lastCheckedAt?: string; /** * The date and time for lastUpdatedAt in UTC and ISO 8601 format. */ readonly lastUpdatedAt?: string; /** * The message associated with the connector status change */ readonly message?: string; readonly provider?: outputs.securityhub.ConnectorProvider; readonly tags?: { [key: string]: string; }; } /** * Resource schema for AWS::SecurityHub::Connector */ export declare function getConnectorOutput(args: GetConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetConnectorOutputArgs { /** * The ARN of the connector */ connectorArn: pulumi.Input; }