Class: AWSCDK::Interfaces::AWSBedrockagentcore::ConfigurationBundleReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSBedrockagentcore::ConfigurationBundleReference
- Defined in:
- interfaces/aws_bedrockagentcore/configuration_bundle_reference.rb
Overview
A reference to a ConfigurationBundle resource.
Instance Attribute Summary collapse
-
#bundle_arn ⇒ String
readonly
The BundleArn of the ConfigurationBundle resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(bundle_arn:) ⇒ ConfigurationBundleReference
constructor
A new instance of ConfigurationBundleReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(bundle_arn:) ⇒ ConfigurationBundleReference
Returns a new instance of ConfigurationBundleReference.
8 9 10 11 |
# File 'interfaces/aws_bedrockagentcore/configuration_bundle_reference.rb', line 8 def initialize(bundle_arn:) @bundle_arn = bundle_arn Jsii::Type.check_type(@bundle_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "bundleArn") end |
Instance Attribute Details
#bundle_arn ⇒ String (readonly)
The BundleArn of the ConfigurationBundle resource.
16 17 18 |
# File 'interfaces/aws_bedrockagentcore/configuration_bundle_reference.rb', line 16 def bundle_arn @bundle_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_bedrockagentcore/configuration_bundle_reference.rb', line 18 def self.jsii_properties { :bundle_arn => "bundleArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_bedrockagentcore/configuration_bundle_reference.rb', line 24 def to_jsii result = {} result.merge!({ "bundleArn" => @bundle_arn, }) result.compact end |