import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Definition of AWS::BedrockAgentCore::Gateway Resource Type
 */
export declare function getGateway(args: GetGatewayArgs, opts?: pulumi.InvokeOptions): Promise<GetGatewayResult>;
export interface GetGatewayArgs {
    gatewayIdentifier: string;
}
export interface GetGatewayResult {
    readonly authorizerConfiguration?: outputs.bedrockagentcore.GatewayAuthorizerConfigurationProperties;
    /**
     * The authorizer type for the gateway.
     */
    readonly authorizerType?: enums.bedrockagentcore.GatewayAuthorizerType;
    /**
     * The date and time at which the gateway was created.
     */
    readonly createdAt?: string;
    /**
     * The description for the gateway.
     */
    readonly description?: string;
    /**
     * The exception level for the gateway.
     */
    readonly exceptionLevel?: enums.bedrockagentcore.GatewayExceptionLevel;
    /**
     * The ARN for the gateway.
     */
    readonly gatewayArn?: string;
    readonly gatewayIdentifier?: string;
    /**
     * The gateway URL for the gateway.
     */
    readonly gatewayUrl?: string;
    readonly interceptorConfigurations?: outputs.bedrockagentcore.GatewayInterceptorConfiguration[];
    /**
     * The KMS key ARN for the gateway.
     */
    readonly kmsKeyArn?: string;
    /**
     * The name for the gateway.
     */
    readonly name?: string;
    readonly policyEngineConfiguration?: outputs.bedrockagentcore.GatewayPolicyEngineConfiguration;
    /**
     * The protocol configuration for the gateway target.
     */
    readonly protocolConfiguration?: outputs.bedrockagentcore.GatewayProtocolConfigurationProperties;
    /**
     * 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?: any;
    readonly roleArn?: string;
    /**
     * The status for the gateway.
     */
    readonly status?: enums.bedrockagentcore.GatewayStatus;
    /**
     * The status reasons for the gateway.
     */
    readonly statusReasons?: string[];
    /**
     * The tags for the gateway.
     */
    readonly tags?: {
        [key: string]: string;
    };
    readonly updatedAt?: string;
    readonly workloadIdentityDetails?: outputs.bedrockagentcore.GatewayWorkloadIdentityDetails;
}
/**
 * Definition of AWS::BedrockAgentCore::Gateway Resource Type
 */
export declare function getGatewayOutput(args: GetGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGatewayResult>;
export interface GetGatewayOutputArgs {
    gatewayIdentifier: pulumi.Input<string>;
}
