interface CfnGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayMixinProps |
Properties for CfnGatewayPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const cfnGatewayMixinProps: bedrockagentcore_mixins.CfnGatewayMixinProps = {
authorizerConfiguration: {
customJwtAuthorizer: {
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
discoveryUrl: 'discoveryUrl',
},
},
authorizerType: 'authorizerType',
description: 'description',
exceptionLevel: 'exceptionLevel',
interceptorConfigurations: [{
inputConfiguration: {
passRequestHeaders: false,
},
interceptionPoints: ['interceptionPoints'],
interceptor: {
lambda: {
arn: 'arn',
},
},
}],
kmsKeyArn: 'kmsKeyArn',
name: 'name',
protocolConfiguration: {
mcp: {
instructions: 'instructions',
searchType: 'searchType',
supportedVersions: ['supportedVersions'],
},
},
protocolType: 'protocolType',
roleArn: 'roleArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| authorizer | IResolvable | Authorizer | |
| authorizer | string | The authorizer type for the gateway. |
| description? | string | The description for the gateway. |
| exception | string | The exception level for the gateway. |
| interceptor | IResolvable | (IResolvable | Gateway)[] | |
| kms | string | The KMS key ARN for the gateway. |
| name? | string | The name for the gateway. |
| protocol | IResolvable | Gateway | The protocol configuration for the gateway target. |
| protocol | string | The protocol type for the gateway target. |
| role | string | |
| tags? | { [string]: string } | The tags for the gateway. |
authorizerConfiguration?
Type:
IResolvable | Authorizer
(optional)
authorizerType?
Type:
string
(optional)
The authorizer type for the gateway.
description?
Type:
string
(optional)
The description for the gateway.
exceptionLevel?
Type:
string
(optional)
The exception level for the gateway.
interceptorConfigurations?
Type:
IResolvable | (IResolvable | Gateway)[]
(optional)
kmsKeyArn?
Type:
string
(optional)
The KMS key ARN for the gateway.
name?
Type:
string
(optional)
The name for the gateway.
protocolConfiguration?
Type:
IResolvable | Gateway
(optional)
The protocol configuration for the gateway target.
protocolType?
Type:
string
(optional)
The protocol type for the gateway target.
roleArn?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)
The tags for the gateway.

.NET
Go
Java
Python
TypeScript