Class: AWSCDK::BedrockAgentCore::CfnGateway::LambdaInterceptorConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::BedrockAgentCore::CfnGateway::LambdaInterceptorConfigurationProperty
- Defined in:
- bedrock_agent_core/cfn_gateway.rb
Overview
Instance Attribute Summary collapse
- #arn ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(arn:) ⇒ LambdaInterceptorConfigurationProperty
constructor
A new instance of LambdaInterceptorConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(arn:) ⇒ LambdaInterceptorConfigurationProperty
Returns a new instance of LambdaInterceptorConfigurationProperty.
1128 1129 1130 1131 |
# File 'bedrock_agent_core/cfn_gateway.rb', line 1128 def initialize(arn:) @arn = arn Jsii::Type.check_type(@arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "arn") end |
Instance Attribute Details
#arn ⇒ String (readonly)
1135 1136 1137 |
# File 'bedrock_agent_core/cfn_gateway.rb', line 1135 def arn @arn end |
Class Method Details
.jsii_properties ⇒ Object
1137 1138 1139 1140 1141 |
# File 'bedrock_agent_core/cfn_gateway.rb', line 1137 def self.jsii_properties { :arn => "arn", } end |
Instance Method Details
#to_jsii ⇒ Object
1143 1144 1145 1146 1147 1148 1149 |
# File 'bedrock_agent_core/cfn_gateway.rb', line 1143 def to_jsii result = {} result.merge!({ "arn" => @arn, }) result.compact end |