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