Class: Aws::Chime::Types::EventsConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-chime/types.rb

Overview

The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.

Constant Summary collapse

SENSITIVE =
[:outbound_events_https_endpoint, :lambda_function_arn]

Instance Attribute Summary collapse

Instance Attribute Details

#bot_idString

The bot ID.

Returns:

  • (String)


3809
3810
3811
3812
3813
3814
3815
# File 'lib/aws-sdk-chime/types.rb', line 3809

class EventsConfiguration < Struct.new(
  :bot_id,
  :outbound_events_https_endpoint,
  :lambda_function_arn)
  SENSITIVE = [:outbound_events_https_endpoint, :lambda_function_arn]
  include Aws::Structure
end

#lambda_function_arnString

Lambda function ARN that allows a bot to receive outgoing events.

Returns:

  • (String)


3809
3810
3811
3812
3813
3814
3815
# File 'lib/aws-sdk-chime/types.rb', line 3809

class EventsConfiguration < Struct.new(
  :bot_id,
  :outbound_events_https_endpoint,
  :lambda_function_arn)
  SENSITIVE = [:outbound_events_https_endpoint, :lambda_function_arn]
  include Aws::Structure
end

#outbound_events_https_endpointString

HTTPS endpoint that allows a bot to receive outgoing events.

Returns:

  • (String)


3809
3810
3811
3812
3813
3814
3815
# File 'lib/aws-sdk-chime/types.rb', line 3809

class EventsConfiguration < Struct.new(
  :bot_id,
  :outbound_events_https_endpoint,
  :lambda_function_arn)
  SENSITIVE = [:outbound_events_https_endpoint, :lambda_function_arn]
  include Aws::Structure
end