Class: Xberg::BedrockConfig
- Inherits:
-
Object
- Object
- Xberg::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.
72 |
# File 'sig/types.rbs', line 72
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.
68 69 70 |
# File 'sig/types.rbs', line 68 def access_key_id @access_key_id end |
#cross_region_prefix ⇒ String? (readonly)
Returns the value of attribute cross_region_prefix.
67 68 69 |
# File 'sig/types.rbs', line 67 def cross_region_prefix @cross_region_prefix end |
#region ⇒ String? (readonly)
Returns the value of attribute region.
66 67 68 |
# File 'sig/types.rbs', line 66 def region @region end |
#secret_access_key ⇒ String? (readonly)
Returns the value of attribute secret_access_key.
69 70 71 |
# File 'sig/types.rbs', line 69 def secret_access_key @secret_access_key end |
#session_token ⇒ String? (readonly)
Returns the value of attribute session_token.
70 71 72 |
# File 'sig/types.rbs', line 70 def session_token @session_token end |