Class: AWSCDK::RTBFabric::CfnInboundExternalLink::LinkLogSettingsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
rtb_fabric/cfn_inbound_external_link.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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