Class: LiterLlm::BedrockConfig
- Inherits:
-
Object
- Object
- LiterLlm::BedrockConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#access_key_id ⇒ String?
readonly
Returns the value of attribute access_key_id.
-
#cross_region_prefix ⇒ String?
readonly
Returns the value of attribute cross_region_prefix.
-
#region ⇒ String?
readonly
Returns the value of attribute region.
-
#secret_access_key ⇒ String?
readonly
Returns the value of attribute secret_access_key.
-
#session_token ⇒ String?
readonly
Returns the value of attribute session_token.
Instance Method Summary collapse
-
#initialize ⇒ BedrockConfig
constructor
A new instance of BedrockConfig.
Constructor Details
#initialize ⇒ BedrockConfig
Returns a new instance of BedrockConfig.
752 |
# File 'sig/types.rbs', line 752
def initialize: (?region: String, ?cross_region_prefix: String, ?access_key_id: String, ?secret_access_key: String, ?session_token: String) -> void
|
Instance Attribute Details
#access_key_id ⇒ String? (readonly)
Returns the value of attribute access_key_id.
748 749 750 |
# File 'sig/types.rbs', line 748 def access_key_id @access_key_id end |
#cross_region_prefix ⇒ String? (readonly)
Returns the value of attribute cross_region_prefix.
747 748 749 |
# File 'sig/types.rbs', line 747 def cross_region_prefix @cross_region_prefix end |
#region ⇒ String? (readonly)
Returns the value of attribute region.
746 747 748 |
# File 'sig/types.rbs', line 746 def region @region end |
#secret_access_key ⇒ String? (readonly)
Returns the value of attribute secret_access_key.
749 750 751 |
# File 'sig/types.rbs', line 749 def secret_access_key @secret_access_key end |
#session_token ⇒ String? (readonly)
Returns the value of attribute session_token.
750 751 752 |
# File 'sig/types.rbs', line 750 def session_token @session_token end |