Class: AWSCDK::BedrockAgentCore::CfnGateway::LambdaInterceptorConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
bedrock_agent_core/cfn_gateway.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arn:) ⇒ LambdaInterceptorConfigurationProperty

Returns a new instance of LambdaInterceptorConfigurationProperty.

Parameters:

  • arn (String)


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

#arnString (readonly)



1135
1136
1137
# File 'bedrock_agent_core/cfn_gateway.rb', line 1135

def arn
  @arn
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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