import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Definition of AWS::BedrockAgentCore::Gateway Resource Type
 */
export declare class Gateway extends pulumi.CustomResource {
    /**
     * Get an existing Gateway 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): Gateway;
    /**
     * Returns true if the given object is an instance of Gateway.  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 Gateway;
    readonly authorizerConfiguration: pulumi.Output<outputs.bedrockagentcore.GatewayAuthorizerConfigurationProperties | undefined>;
    /**
     * The authorizer type for the gateway.
     */
    readonly authorizerType: pulumi.Output<enums.bedrockagentcore.GatewayAuthorizerType>;
    /**
     * The date and time at which the gateway was created.
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * The description for the gateway.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * The exception level for the gateway.
     */
    readonly exceptionLevel: pulumi.Output<enums.bedrockagentcore.GatewayExceptionLevel | undefined>;
    /**
     * The ARN for the gateway.
     */
    readonly gatewayArn: pulumi.Output<string>;
    readonly gatewayIdentifier: pulumi.Output<string>;
    /**
     * The gateway URL for the gateway.
     */
    readonly gatewayUrl: pulumi.Output<string>;
    readonly interceptorConfigurations: pulumi.Output<outputs.bedrockagentcore.GatewayInterceptorConfiguration[] | undefined>;
    /**
     * The KMS key ARN for the gateway.
     */
    readonly kmsKeyArn: pulumi.Output<string | undefined>;
    /**
     * The name for the gateway.
     */
    readonly name: pulumi.Output<string>;
    readonly policyEngineConfiguration: pulumi.Output<outputs.bedrockagentcore.GatewayPolicyEngineConfiguration | undefined>;
    /**
     * The protocol configuration for the gateway target.
     */
    readonly protocolConfiguration: pulumi.Output<outputs.bedrockagentcore.GatewayProtocolConfigurationProperties | undefined>;
    /**
     * The protocol type for the gateway target.
     *
     * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::BedrockAgentCore::Gateway` for more information about the expected schema for this property.
     */
    readonly protocolType: pulumi.Output<any | undefined>;
    readonly roleArn: pulumi.Output<string>;
    /**
     * The status for the gateway.
     */
    readonly status: pulumi.Output<enums.bedrockagentcore.GatewayStatus>;
    /**
     * The status reasons for the gateway.
     */
    readonly statusReasons: pulumi.Output<string[]>;
    /**
     * The tags for the gateway.
     */
    readonly tags: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    readonly updatedAt: pulumi.Output<string>;
    readonly workloadIdentityDetails: pulumi.Output<outputs.bedrockagentcore.GatewayWorkloadIdentityDetails>;
    /**
     * Create a Gateway 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: GatewayArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a Gateway resource.
 */
export interface GatewayArgs {
    authorizerConfiguration?: pulumi.Input<inputs.bedrockagentcore.GatewayAuthorizerConfigurationPropertiesArgs>;
    /**
     * The authorizer type for the gateway.
     */
    authorizerType: pulumi.Input<enums.bedrockagentcore.GatewayAuthorizerType>;
    /**
     * The description for the gateway.
     */
    description?: pulumi.Input<string>;
    /**
     * The exception level for the gateway.
     */
    exceptionLevel?: pulumi.Input<enums.bedrockagentcore.GatewayExceptionLevel>;
    interceptorConfigurations?: pulumi.Input<pulumi.Input<inputs.bedrockagentcore.GatewayInterceptorConfigurationArgs>[]>;
    /**
     * The KMS key ARN for the gateway.
     */
    kmsKeyArn?: pulumi.Input<string>;
    /**
     * The name for the gateway.
     */
    name?: pulumi.Input<string>;
    policyEngineConfiguration?: pulumi.Input<inputs.bedrockagentcore.GatewayPolicyEngineConfigurationArgs>;
    /**
     * The protocol configuration for the gateway target.
     */
    protocolConfiguration?: pulumi.Input<inputs.bedrockagentcore.GatewayProtocolConfigurationPropertiesArgs>;
    /**
     * The protocol type for the gateway target.
     *
     * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::BedrockAgentCore::Gateway` for more information about the expected schema for this property.
     */
    protocolType?: any;
    roleArn: pulumi.Input<string>;
    /**
     * The tags for the gateway.
     */
    tags?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
}
