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)


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

Returns the value of attribute access_key_id.

Returns:

  • (String, nil)


748
749
750
# File 'sig/types.rbs', line 748

def access_key_id
  @access_key_id
end

#cross_region_prefixString? (readonly)

Returns the value of attribute cross_region_prefix.

Returns:

  • (String, nil)


747
748
749
# File 'sig/types.rbs', line 747

def cross_region_prefix
  @cross_region_prefix
end

#regionString? (readonly)

Returns the value of attribute region.

Returns:

  • (String, nil)


746
747
748
# File 'sig/types.rbs', line 746

def region
  @region
end

#secret_access_keyString? (readonly)

Returns the value of attribute secret_access_key.

Returns:

  • (String, nil)


749
750
751
# File 'sig/types.rbs', line 749

def secret_access_key
  @secret_access_key
end

#session_tokenString? (readonly)

Returns the value of attribute session_token.

Returns:

  • (String, nil)


750
751
752
# File 'sig/types.rbs', line 750

def session_token
  @session_token
end