Class: Aws::Chime::Types::EventsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::EventsConfiguration
- 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
-
#bot_id ⇒ String
The bot ID.
-
#lambda_function_arn ⇒ String
Lambda function ARN that allows a bot to receive outgoing events.
-
#outbound_events_https_endpoint ⇒ String
HTTPS endpoint that allows a bot to receive outgoing events.
Instance Attribute Details
#bot_id ⇒ String
The bot ID.
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_arn ⇒ String
Lambda function ARN that allows a bot to receive outgoing events.
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_endpoint ⇒ String
HTTPS endpoint that allows a bot to receive outgoing events.
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 |