import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Resource for creating an AWS connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@lbrlabs/pulumi-harness";
 *
 * const aws = new harness.platform.AwsConnector("aws", {
 *     description: "description of aws connector",
 *     fixedDelayBackoffStrategy: {
 *         fixedBackoff: 10,
 *         retryCount: 3,
 *     },
 *     identifier: "example_aws_connector",
 *     manual: {
 *         accessKeyRef: "account.access_id",
 *         delegateSelectors: ["harness-delegate"],
 *         secretKeyRef: "account.secret_id",
 *     },
 *     tags: ["foo:bar"],
 * });
 * ```
 *
 * ## Import
 *
 * Import account level aws connector
 *
 * ```sh
 *  $ pulumi import harness:platform/awsConnector:AwsConnector example <connector_id>
 * ```
 *
 *  Import organization level aws connector
 *
 * ```sh
 *  $ pulumi import harness:platform/awsConnector:AwsConnector example <organization_id>/<connector_id>
 * ```
 *
 *  Import project level aws connector
 *
 * ```sh
 *  $ pulumi import harness:platform/awsConnector:AwsConnector example <organization_id>/<project_id>/<connector_id>
 * ```
 */
export declare class AwsConnector extends pulumi.CustomResource {
    /**
     * Get an existing AwsConnector 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 state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AwsConnectorState, opts?: pulumi.CustomResourceOptions): AwsConnector;
    /**
     * Returns true if the given object is an instance of AwsConnector.  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 AwsConnector;
    /**
     * Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
     */
    readonly crossAccountAccess: pulumi.Output<outputs.platform.AwsConnectorCrossAccountAccess | undefined>;
    /**
     * Description of the resource.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * Equal Jitter BackOff Strategy.
     */
    readonly equalJitterBackoffStrategy: pulumi.Output<outputs.platform.AwsConnectorEqualJitterBackoffStrategy | undefined>;
    /**
     * Fixed Delay BackOff Strategy.
     */
    readonly fixedDelayBackoffStrategy: pulumi.Output<outputs.platform.AwsConnectorFixedDelayBackoffStrategy | undefined>;
    /**
     * Full Jitter BackOff Strategy.
     */
    readonly fullJitterBackoffStrategy: pulumi.Output<outputs.platform.AwsConnectorFullJitterBackoffStrategy | undefined>;
    /**
     * Unique identifier of the resource.
     */
    readonly identifier: pulumi.Output<string>;
    /**
     * Inherit credentials from the delegate.
     */
    readonly inheritFromDelegate: pulumi.Output<outputs.platform.AwsConnectorInheritFromDelegate | undefined>;
    /**
     * Use IAM role for service accounts.
     */
    readonly irsa: pulumi.Output<outputs.platform.AwsConnectorIrsa | undefined>;
    /**
     * Use IAM role for service accounts.
     */
    readonly manual: pulumi.Output<outputs.platform.AwsConnectorManual | undefined>;
    /**
     * Name of the resource.
     */
    readonly name: pulumi.Output<string>;
    /**
     * Unique identifier of the organization.
     */
    readonly orgId: pulumi.Output<string | undefined>;
    /**
     * Unique identifier of the project.
     */
    readonly projectId: pulumi.Output<string | undefined>;
    /**
     * Tags to associate with the resource.
     */
    readonly tags: pulumi.Output<string[] | undefined>;
    /**
     * Create a AwsConnector 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: AwsConnectorArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering AwsConnector resources.
 */
export interface AwsConnectorState {
    /**
     * Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
     */
    crossAccountAccess?: pulumi.Input<inputs.platform.AwsConnectorCrossAccountAccess>;
    /**
     * Description of the resource.
     */
    description?: pulumi.Input<string>;
    /**
     * Equal Jitter BackOff Strategy.
     */
    equalJitterBackoffStrategy?: pulumi.Input<inputs.platform.AwsConnectorEqualJitterBackoffStrategy>;
    /**
     * Fixed Delay BackOff Strategy.
     */
    fixedDelayBackoffStrategy?: pulumi.Input<inputs.platform.AwsConnectorFixedDelayBackoffStrategy>;
    /**
     * Full Jitter BackOff Strategy.
     */
    fullJitterBackoffStrategy?: pulumi.Input<inputs.platform.AwsConnectorFullJitterBackoffStrategy>;
    /**
     * Unique identifier of the resource.
     */
    identifier?: pulumi.Input<string>;
    /**
     * Inherit credentials from the delegate.
     */
    inheritFromDelegate?: pulumi.Input<inputs.platform.AwsConnectorInheritFromDelegate>;
    /**
     * Use IAM role for service accounts.
     */
    irsa?: pulumi.Input<inputs.platform.AwsConnectorIrsa>;
    /**
     * Use IAM role for service accounts.
     */
    manual?: pulumi.Input<inputs.platform.AwsConnectorManual>;
    /**
     * Name of the resource.
     */
    name?: pulumi.Input<string>;
    /**
     * Unique identifier of the organization.
     */
    orgId?: pulumi.Input<string>;
    /**
     * Unique identifier of the project.
     */
    projectId?: pulumi.Input<string>;
    /**
     * Tags to associate with the resource.
     */
    tags?: pulumi.Input<pulumi.Input<string>[]>;
}
/**
 * The set of arguments for constructing a AwsConnector resource.
 */
export interface AwsConnectorArgs {
    /**
     * Select this option if you want to use one AWS account for the connection, but you want to deploy or build in a different AWS account. In this scenario, the AWS account used for AWS access in Credentials will assume the IAM role you specify in Cross-account role ARN setting. This option uses the AWS Security Token Service (STS) feature.
     */
    crossAccountAccess?: pulumi.Input<inputs.platform.AwsConnectorCrossAccountAccess>;
    /**
     * Description of the resource.
     */
    description?: pulumi.Input<string>;
    /**
     * Equal Jitter BackOff Strategy.
     */
    equalJitterBackoffStrategy?: pulumi.Input<inputs.platform.AwsConnectorEqualJitterBackoffStrategy>;
    /**
     * Fixed Delay BackOff Strategy.
     */
    fixedDelayBackoffStrategy?: pulumi.Input<inputs.platform.AwsConnectorFixedDelayBackoffStrategy>;
    /**
     * Full Jitter BackOff Strategy.
     */
    fullJitterBackoffStrategy?: pulumi.Input<inputs.platform.AwsConnectorFullJitterBackoffStrategy>;
    /**
     * Unique identifier of the resource.
     */
    identifier: pulumi.Input<string>;
    /**
     * Inherit credentials from the delegate.
     */
    inheritFromDelegate?: pulumi.Input<inputs.platform.AwsConnectorInheritFromDelegate>;
    /**
     * Use IAM role for service accounts.
     */
    irsa?: pulumi.Input<inputs.platform.AwsConnectorIrsa>;
    /**
     * Use IAM role for service accounts.
     */
    manual?: pulumi.Input<inputs.platform.AwsConnectorManual>;
    /**
     * Name of the resource.
     */
    name?: pulumi.Input<string>;
    /**
     * Unique identifier of the organization.
     */
    orgId?: pulumi.Input<string>;
    /**
     * Unique identifier of the project.
     */
    projectId?: pulumi.Input<string>;
    /**
     * Tags to associate with the resource.
     */
    tags?: pulumi.Input<pulumi.Input<string>[]>;
}
