GatewayRuleReference

class aws_cdk.interfaces.aws_bedrockagentcore.GatewayRuleReference(*, gateway_identifier, rule_id)

Bases: object

A reference to a GatewayRule resource.

Parameters:
  • gateway_identifier (str) – The GatewayIdentifier of the GatewayRule resource.

  • rule_id (str) – The RuleId of the GatewayRule resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_bedrockagentcore as interfaces_bedrockagentcore

gateway_rule_reference = interfaces_bedrockagentcore.GatewayRuleReference(
    gateway_identifier="gatewayIdentifier",
    rule_id="ruleId"
)

Attributes

gateway_identifier

The GatewayIdentifier of the GatewayRule resource.

rule_id

The RuleId of the GatewayRule resource.