Class: AWSCDK::Timestream::CfnScheduledQuery::ErrorReportConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Timestream::CfnScheduledQuery::ErrorReportConfigurationProperty
- Defined in:
- timestream/cfn_scheduled_query.rb
Overview
Configuration required for error reporting.
Instance Attribute Summary collapse
-
#s3_configuration ⇒ AWSCDK::IResolvable, AWSCDK::Timestream::CfnScheduledQuery::S3ConfigurationProperty
readonly
The S3 configuration for the error reports.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(s3_configuration:) ⇒ ErrorReportConfigurationProperty
constructor
A new instance of ErrorReportConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(s3_configuration:) ⇒ ErrorReportConfigurationProperty
Returns a new instance of ErrorReportConfigurationProperty.
747 748 749 750 |
# File 'timestream/cfn_scheduled_query.rb', line 747 def initialize(s3_configuration:) @s3_configuration = s3_configuration.is_a?(Hash) ? ::AWSCDK::Timestream::CfnScheduledQuery::S3ConfigurationProperty.new(**s3_configuration.transform_keys(&:to_sym)) : s3_configuration Jsii::Type.check_type(@s3_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c190aW1lc3RyZWFtLkNmblNjaGVkdWxlZFF1ZXJ5LlMzQ29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "s3Configuration") end |
Instance Attribute Details
#s3_configuration ⇒ AWSCDK::IResolvable, AWSCDK::Timestream::CfnScheduledQuery::S3ConfigurationProperty (readonly)
The S3 configuration for the error reports.
756 757 758 |
# File 'timestream/cfn_scheduled_query.rb', line 756 def s3_configuration @s3_configuration end |
Class Method Details
.jsii_properties ⇒ Object
758 759 760 761 762 |
# File 'timestream/cfn_scheduled_query.rb', line 758 def self.jsii_properties { :s3_configuration => "s3Configuration", } end |
Instance Method Details
#to_jsii ⇒ Object
764 765 766 767 768 769 770 |
# File 'timestream/cfn_scheduled_query.rb', line 764 def to_jsii result = {} result.merge!({ "s3Configuration" => @s3_configuration, }) result.compact end |