Class: AWSCDK::Pipes::CfnPipe::FirehoseLogDestinationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
pipes/cfn_pipe.rb

Overview

Represents the Amazon Data Firehose logging configuration settings for the pipe.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(delivery_stream_arn: nil) ⇒ FirehoseLogDestinationProperty

Returns a new instance of FirehoseLogDestinationProperty.

Parameters:

  • delivery_stream_arn (String, nil) (defaults to: nil)

    The Amazon Resource Name (ARN) of the Firehose delivery stream to which EventBridge delivers the pipe log records.



1817
1818
1819
1820
# File 'pipes/cfn_pipe.rb', line 1817

def initialize(delivery_stream_arn: nil)
  @delivery_stream_arn = delivery_stream_arn
  Jsii::Type.check_type(@delivery_stream_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "deliveryStreamArn") unless @delivery_stream_arn.nil?
end

Instance Attribute Details

#delivery_stream_arnString? (readonly)

The Amazon Resource Name (ARN) of the Firehose delivery stream to which EventBridge delivers the pipe log records.



1826
1827
1828
# File 'pipes/cfn_pipe.rb', line 1826

def delivery_stream_arn
  @delivery_stream_arn
end

Class Method Details

.jsii_propertiesObject



1828
1829
1830
1831
1832
# File 'pipes/cfn_pipe.rb', line 1828

def self.jsii_properties
  {
    :delivery_stream_arn => "deliveryStreamArn",
  }
end

Instance Method Details

#to_jsiiObject



1834
1835
1836
1837
1838
1839
1840
# File 'pipes/cfn_pipe.rb', line 1834

def to_jsii
  result = {}
  result.merge!({
    "deliveryStreamArn" => @delivery_stream_arn,
  })
  result.compact
end