interface GatewayTargetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.BedrockAgentCore.GatewayTargetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrockagentcore#GatewayTargetReference |
Java | software.amazon.awscdk.interfaces.bedrockagentcore.GatewayTargetReference |
Python | aws_cdk.interfaces.aws_bedrockagentcore.GatewayTargetReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrockagentcore » GatewayTargetReference |
A reference to a GatewayTarget resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as interfaces_bedrockagentcore } from 'aws-cdk-lib/interfaces';
const gatewayTargetReference: interfaces_bedrockagentcore.GatewayTargetReference = {
gatewayIdentifier: 'gatewayIdentifier',
targetId: 'targetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The GatewayIdentifier of the GatewayTarget resource. |
| target | string | The TargetId of the GatewayTarget resource. |
gatewayIdentifier
Type:
string
The GatewayIdentifier of the GatewayTarget resource.
targetId
Type:
string
The TargetId of the GatewayTarget resource.

.NET
Go
Java
Python
TypeScript