Class: AWSCDK::Interfaces::AWSNetworkfirewall::LoggingConfigurationReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSNetworkfirewall::LoggingConfigurationReference
- Defined in:
- interfaces/aws_networkfirewall/logging_configuration_reference.rb
Overview
A reference to a LoggingConfiguration resource.
Instance Attribute Summary collapse
-
#firewall_arn ⇒ String
readonly
The FirewallArn of the LoggingConfiguration resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(firewall_arn:) ⇒ LoggingConfigurationReference
constructor
A new instance of LoggingConfigurationReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(firewall_arn:) ⇒ LoggingConfigurationReference
Returns a new instance of LoggingConfigurationReference.
8 9 10 11 |
# File 'interfaces/aws_networkfirewall/logging_configuration_reference.rb', line 8 def initialize(firewall_arn:) @firewall_arn = firewall_arn Jsii::Type.check_type(@firewall_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "firewallArn") end |
Instance Attribute Details
#firewall_arn ⇒ String (readonly)
The FirewallArn of the LoggingConfiguration resource.
16 17 18 |
# File 'interfaces/aws_networkfirewall/logging_configuration_reference.rb', line 16 def firewall_arn @firewall_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_networkfirewall/logging_configuration_reference.rb', line 18 def self.jsii_properties { :firewall_arn => "firewallArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_networkfirewall/logging_configuration_reference.rb', line 24 def to_jsii result = {} result.merge!({ "firewallArn" => @firewall_arn, }) result.compact end |