UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

80 lines (79 loc) 2.56 kB
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; /** * The protocol configuration for the gateway target. */ readonly protocolConfiguration?: outputs.bedrockagentcore.GatewayProtocolConfigurationProperties; /** * The protocol type for the gateway target. */ readonly protocolType?: enums.bedrockagentcore.GatewayProtocolType; 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>; }