Class: AWSCDK::ObservabilityAdmin::CfnTelemetryRule::CloudtrailParametersProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ObservabilityAdmin::CfnTelemetryRule::CloudtrailParametersProperty
- Defined in:
- observability_admin/cfn_telemetry_rule.rb
Overview
Parameters specific to AWS CloudTrail telemetry configuration.
Instance Attribute Summary collapse
-
#advanced_event_selectors ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::ObservabilityAdmin::CfnTelemetryRule::AdvancedEventSelectorProperty>
readonly
The advanced event selectors to use for filtering AWS CloudTrail events.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(advanced_event_selectors:) ⇒ CloudtrailParametersProperty
constructor
A new instance of CloudtrailParametersProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(advanced_event_selectors:) ⇒ CloudtrailParametersProperty
Returns a new instance of CloudtrailParametersProperty.
716 717 718 719 |
# File 'observability_admin/cfn_telemetry_rule.rb', line 716 def initialize(advanced_event_selectors:) @advanced_event_selectors = advanced_event_selectors Jsii::Type.check_type(@advanced_event_selectors, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3Nfb2JzZXJ2YWJpbGl0eWFkbWluLkNmblRlbGVtZXRyeVJ1bGUuQWR2YW5jZWRFdmVudFNlbGVjdG9yUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "advancedEventSelectors") end |
Instance Attribute Details
#advanced_event_selectors ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::ObservabilityAdmin::CfnTelemetryRule::AdvancedEventSelectorProperty> (readonly)
The advanced event selectors to use for filtering AWS CloudTrail events.
725 726 727 |
# File 'observability_admin/cfn_telemetry_rule.rb', line 725 def advanced_event_selectors @advanced_event_selectors end |
Class Method Details
.jsii_properties ⇒ Object
727 728 729 730 731 |
# File 'observability_admin/cfn_telemetry_rule.rb', line 727 def self.jsii_properties { :advanced_event_selectors => "advancedEventSelectors", } end |
Instance Method Details
#to_jsii ⇒ Object
733 734 735 736 737 738 739 |
# File 'observability_admin/cfn_telemetry_rule.rb', line 733 def to_jsii result = {} result.merge!({ "advancedEventSelectors" => @advanced_event_selectors, }) result.compact end |