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