Class: LiterLlm::BedrockConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBedrockConfig

Returns a new instance of BedrockConfig.

Parameters:

  • region: (String)
  • cross_region_prefix: (String)
  • access_key_id: (String)
  • secret_access_key: (String)
  • session_token: (String)


93
# File 'sig/types.rbs', line 93

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_idString? (readonly)

Returns the value of attribute access_key_id.

Returns:

  • (String, nil)


89
90
91
# File 'sig/types.rbs', line 89

def access_key_id
  @access_key_id
end

#cross_region_prefixString? (readonly)

Returns the value of attribute cross_region_prefix.

Returns:

  • (String, nil)


88
89
90
# File 'sig/types.rbs', line 88

def cross_region_prefix
  @cross_region_prefix
end

#regionString? (readonly)

Returns the value of attribute region.

Returns:

  • (String, nil)


87
88
89
# File 'sig/types.rbs', line 87

def region
  @region
end

#secret_access_keyString? (readonly)

Returns the value of attribute secret_access_key.

Returns:

  • (String, nil)


90
91
92
# File 'sig/types.rbs', line 90

def secret_access_key
  @secret_access_key
end

#session_tokenString? (readonly)

Returns the value of attribute session_token.

Returns:

  • (String, nil)


91
92
93
# File 'sig/types.rbs', line 91

def session_token
  @session_token
end