Class: AWSCDK::IVSChat::CfnLoggingConfiguration::FirehoseDestinationConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IVSChat::CfnLoggingConfiguration::FirehoseDestinationConfigurationProperty
- Defined in:
- ivs_chat/cfn_logging_configuration.rb
Overview
The FirehoseDestinationConfiguration property type specifies a Kinesis Firehose location where chat logs will be stored.
Instance Attribute Summary collapse
-
#delivery_stream_name ⇒ String
readonly
Name of the Amazon Kinesis Firehose delivery stream where chat activity will be logged.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(delivery_stream_name:) ⇒ FirehoseDestinationConfigurationProperty
constructor
A new instance of FirehoseDestinationConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(delivery_stream_name:) ⇒ FirehoseDestinationConfigurationProperty
Returns a new instance of FirehoseDestinationConfigurationProperty.
656 657 658 659 |
# File 'ivs_chat/cfn_logging_configuration.rb', line 656 def initialize(delivery_stream_name:) @delivery_stream_name = delivery_stream_name Jsii::Type.check_type(@delivery_stream_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "deliveryStreamName") end |
Instance Attribute Details
#delivery_stream_name ⇒ String (readonly)
Name of the Amazon Kinesis Firehose delivery stream where chat activity will be logged.
665 666 667 |
# File 'ivs_chat/cfn_logging_configuration.rb', line 665 def delivery_stream_name @delivery_stream_name end |
Class Method Details
.jsii_properties ⇒ Object
667 668 669 670 671 |
# File 'ivs_chat/cfn_logging_configuration.rb', line 667 def self.jsii_properties { :delivery_stream_name => "deliveryStreamName", } end |
Instance Method Details
#to_jsii ⇒ Object
673 674 675 676 677 678 679 |
# File 'ivs_chat/cfn_logging_configuration.rb', line 673 def to_jsii result = {} result.merge!({ "deliveryStreamName" => @delivery_stream_name, }) result.compact end |