Class: AWSCDK::RTBFabric::CfnOutboundExternalLink::ApplicationLogsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RTBFabric::CfnOutboundExternalLink::ApplicationLogsProperty
- Defined in:
- rtb_fabric/cfn_outbound_external_link.rb
Overview
Instance Attribute Summary collapse
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(link_application_log_sampling:) ⇒ ApplicationLogsProperty
constructor
A new instance of ApplicationLogsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(link_application_log_sampling:) ⇒ ApplicationLogsProperty
Returns a new instance of ApplicationLogsProperty.
583 584 585 586 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 583 def initialize(link_application_log_sampling:) @link_application_log_sampling = link_application_log_sampling.is_a?(Hash) ? ::AWSCDK::RTBFabric::CfnOutboundExternalLink::LinkApplicationLogSamplingProperty.new(**link_application_log_sampling.transform_keys(&:to_sym)) : link_application_log_sampling Jsii::Type.check_type(@link_application_log_sampling, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ydGJmYWJyaWMuQ2ZuT3V0Ym91bmRFeHRlcm5hbExpbmsuTGlua0FwcGxpY2F0aW9uTG9nU2FtcGxpbmdQcm9wZXJ0eSJ9XX19")), "linkApplicationLogSampling") end |
Instance Attribute Details
#link_application_log_sampling ⇒ AWSCDK::IResolvable, AWSCDK::RTBFabric::CfnOutboundExternalLink::LinkApplicationLogSamplingProperty (readonly)
590 591 592 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 590 def link_application_log_sampling @link_application_log_sampling end |
Class Method Details
.jsii_properties ⇒ Object
592 593 594 595 596 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 592 def self.jsii_properties { :link_application_log_sampling => "linkApplicationLogSampling", } end |
Instance Method Details
#to_jsii ⇒ Object
598 599 600 601 602 603 604 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 598 def to_jsii result = {} result.merge!({ "linkApplicationLogSampling" => @link_application_log_sampling, }) result.compact end |