Class: AWSCDK::RTBFabric::CfnOutboundExternalLink::LinkLogSettingsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RTBFabric::CfnOutboundExternalLink::LinkLogSettingsProperty
- Defined in:
- rtb_fabric/cfn_outbound_external_link.rb
Overview
Instance Attribute Summary collapse
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(application_logs:) ⇒ LinkLogSettingsProperty
constructor
A new instance of LinkLogSettingsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(application_logs:) ⇒ LinkLogSettingsProperty
Returns a new instance of LinkLogSettingsProperty.
686 687 688 689 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 686 def initialize(application_logs:) @application_logs = application_logs.is_a?(Hash) ? ::AWSCDK::RTBFabric::CfnOutboundExternalLink::ApplicationLogsProperty.new(**application_logs.transform_keys(&:to_sym)) : application_logs Jsii::Type.check_type(@application_logs, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ydGJmYWJyaWMuQ2ZuT3V0Ym91bmRFeHRlcm5hbExpbmsuQXBwbGljYXRpb25Mb2dzUHJvcGVydHkifV19fQ==")), "applicationLogs") end |
Instance Attribute Details
#application_logs ⇒ AWSCDK::IResolvable, AWSCDK::RTBFabric::CfnOutboundExternalLink::ApplicationLogsProperty (readonly)
693 694 695 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 693 def application_logs @application_logs end |
Class Method Details
.jsii_properties ⇒ Object
695 696 697 698 699 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 695 def self.jsii_properties { :application_logs => "applicationLogs", } end |
Instance Method Details
#to_jsii ⇒ Object
701 702 703 704 705 706 707 |
# File 'rtb_fabric/cfn_outbound_external_link.rb', line 701 def to_jsii result = {} result.merge!({ "applicationLogs" => @application_logs, }) result.compact end |