Class: AWSCDK::RTBFabric::CfnInboundExternalLink::LinkLogSettingsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::RTBFabric::CfnInboundExternalLink::LinkLogSettingsProperty
- Defined in:
- rtb_fabric/cfn_inbound_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.
681 682 683 684 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 681 def initialize(application_logs:) @application_logs = application_logs.is_a?(Hash) ? ::AWSCDK::RTBFabric::CfnInboundExternalLink::ApplicationLogsProperty.new(**application_logs.transform_keys(&:to_sym)) : application_logs Jsii::Type.check_type(@application_logs, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ydGJmYWJyaWMuQ2ZuSW5ib3VuZEV4dGVybmFsTGluay5BcHBsaWNhdGlvbkxvZ3NQcm9wZXJ0eSJ9XX19")), "applicationLogs") end |
Instance Attribute Details
#application_logs ⇒ AWSCDK::IResolvable, AWSCDK::RTBFabric::CfnInboundExternalLink::ApplicationLogsProperty (readonly)
688 689 690 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 688 def application_logs @application_logs end |
Class Method Details
.jsii_properties ⇒ Object
690 691 692 693 694 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 690 def self.jsii_properties { :application_logs => "applicationLogs", } end |
Instance Method Details
#to_jsii ⇒ Object
696 697 698 699 700 701 702 |
# File 'rtb_fabric/cfn_inbound_external_link.rb', line 696 def to_jsii result = {} result.merge!({ "applicationLogs" => @application_logs, }) result.compact end |