Class: AWSCDK::IVSChat::CfnLoggingConfiguration::FirehoseDestinationConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(delivery_stream_name:) ⇒ FirehoseDestinationConfigurationProperty

Returns a new instance of FirehoseDestinationConfigurationProperty.

Parameters:

  • delivery_stream_name (String)

    Name of the Amazon Kinesis Firehose delivery stream where chat activity will be logged.



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_nameString (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_propertiesObject



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_jsiiObject



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