interface GatewayRuleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.BedrockAgentCore.GatewayRuleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrockagentcore#GatewayRuleReference |
Java | software.amazon.awscdk.interfaces.bedrockagentcore.GatewayRuleReference |
Python | aws_cdk.interfaces.aws_bedrockagentcore.GatewayRuleReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrockagentcore » GatewayRuleReference |
A reference to a GatewayRule 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 gatewayRuleReference: interfaces_bedrockagentcore.GatewayRuleReference = {
gatewayIdentifier: 'gatewayIdentifier',
ruleId: 'ruleId',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The GatewayIdentifier of the GatewayRule resource. |
| rule | string | The RuleId of the GatewayRule resource. |
gatewayIdentifier
Type:
string
The GatewayIdentifier of the GatewayRule resource.
ruleId
Type:
string
The RuleId of the GatewayRule resource.

.NET
Go
Java
Python
TypeScript