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, 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; /** * The authorizer type for the gateway. */ readonly authorizerType: pulumi.Output; /** * The date and time at which the gateway was created. */ readonly createdAt: pulumi.Output; /** * The description for the gateway. */ readonly description: pulumi.Output; /** * The exception level for the gateway. */ readonly exceptionLevel: pulumi.Output; /** * The ARN for the gateway. */ readonly gatewayArn: pulumi.Output; readonly gatewayIdentifier: pulumi.Output; /** * The gateway URL for the gateway. */ readonly gatewayUrl: pulumi.Output; readonly interceptorConfigurations: pulumi.Output; /** * The KMS key ARN for the gateway. */ readonly kmsKeyArn: pulumi.Output; /** * The name for the gateway. */ readonly name: pulumi.Output; readonly policyEngineConfiguration: pulumi.Output; /** * The protocol configuration for the gateway target. */ readonly protocolConfiguration: pulumi.Output; /** * The protocol type for the gateway target. */ readonly protocolType: pulumi.Output; readonly roleArn: pulumi.Output; /** * The status for the gateway. */ readonly status: pulumi.Output; /** * The status reasons for the gateway. */ readonly statusReasons: pulumi.Output; /** * The tags for the gateway. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; readonly updatedAt: pulumi.Output; readonly workloadIdentityDetails: pulumi.Output; /** * 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; /** * The authorizer type for the gateway. */ authorizerType: pulumi.Input; /** * The description for the gateway. */ description?: pulumi.Input; /** * The exception level for the gateway. */ exceptionLevel?: pulumi.Input; interceptorConfigurations?: pulumi.Input[]>; /** * The KMS key ARN for the gateway. */ kmsKeyArn?: pulumi.Input; /** * The name for the gateway. */ name?: pulumi.Input; policyEngineConfiguration?: pulumi.Input; /** * The protocol configuration for the gateway target. */ protocolConfiguration?: pulumi.Input; /** * The protocol type for the gateway target. */ protocolType: pulumi.Input; roleArn: pulumi.Input; /** * The tags for the gateway. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }