import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Config::Connector */ export declare function getConnector(args: GetConnectorArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConnectorArgs { /** * The Amazon Resource Name (ARN) of the connector. */ arn: string; } export interface GetConnectorResult { /** * The Amazon Resource Name (ARN) of the connector. */ readonly arn?: string; /** * The time at which the connector was created. */ readonly createdTime?: string; /** * The name of the connector. AWS Config automatically assigns the name when creating the Connector. */ readonly name?: string; /** * The tags for the connector. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::Config::Connector */ export declare function getConnectorOutput(args: GetConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetConnectorOutputArgs { /** * The Amazon Resource Name (ARN) of the connector. */ arn: pulumi.Input; }