interface GatewayApiKeyIdentityBinding
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.GatewayApiKeyIdentityBinding |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#GatewayApiKeyIdentityBinding |
Java | software.amazon.awscdk.services.bedrockagentcore.GatewayApiKeyIdentityBinding |
Python | aws_cdk.aws_bedrockagentcore.GatewayApiKeyIdentityBinding |
TypeScript (source) | aws-cdk-lib » aws_bedrockagentcore » GatewayApiKeyIdentityBinding |
Obtainable from
Api.bindForGatewayApiKeyTarget()
Provider and secret ARNs for wiring a Token Vault API key identity into a gateway target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const gatewayApiKeyIdentityBinding: bedrockagentcore.GatewayApiKeyIdentityBinding = {
providerArn: 'providerArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | string | API key credential provider ARN. |
| secret | string | Secrets Manager secret ARN for the API key material. |
providerArn
Type:
string
API key credential provider ARN.
secretArn
Type:
string
Secrets Manager secret ARN for the API key material.

.NET
Go
Java
Python
TypeScript (