module ChimeSdk

Top level namespace of amazon-chime-sdk-rails, server-side implementation of Amazon Chime SDK for Ruby on Rails application.

Constants

VERSION

Gem version of amazon-chime-sdk-rails

Public Class Methods

config() click to toggle source

Returns configuration object of ChimeSdk.

# File lib/amazon-chime-sdk-rails.rb, line 9
def self.config
  @config ||= ChimeSdk::Config.new
end
configure() { |config| ... } click to toggle source

Sets global configuration options for ChimeSdk. Available options and their defaults are in the example below: @example Initializer for Rails

ChimeSdk.configure do |config|
  config.appication_name               = 'chime-sdk-rails'
  config.media_region                  = 'us-east-1'
  config.prefix                        = "#{config.application_name}-#{Rails.env}-"
  config.max_meeting_results           = 10
  config.max_attendee_results          = 10
  config.create_meeting_with_attendee  = true
  config.create_attendee_from_meeting  = true
  config.create_meeting_by_get_request = false
end
# File lib/amazon-chime-sdk-rails.rb, line 26
def self.configure
  yield(config) if block_given?
end