Class: AWSCDK::NetworkFirewall::CfnTLSInspectionConfiguration::ServerCertificateProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::NetworkFirewall::CfnTLSInspectionConfiguration::ServerCertificateProperty
- Defined in:
- network_firewall/cfn_tls_inspection_configuration.rb
Overview
Any Certificate Manager (ACM) Secure Sockets Layer/Transport Layer Security (SSL/TLS) server certificate that's associated with a ServerCertificateConfiguration . Used in a TLSInspectionConfiguration for inspection of inbound traffic to your firewall. You must request or import a SSL/TLS certificate into ACM for each domain Network Firewall needs to decrypt and inspect. AWS Network Firewall uses the SSL/TLS certificates to decrypt specified inbound SSL/TLS traffic going to your firewall. For information about working with certificates in Certificate Manager , see Request a public certificate or Importing certificates in the Certificate Manager User Guide .
Instance Attribute Summary collapse
-
#resource_arn ⇒ String?
readonly
The Amazon Resource Name (ARN) of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(resource_arn: nil) ⇒ ServerCertificateProperty
constructor
A new instance of ServerCertificateProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(resource_arn: nil) ⇒ ServerCertificateProperty
Returns a new instance of ServerCertificateProperty.
795 796 797 798 |
# File 'network_firewall/cfn_tls_inspection_configuration.rb', line 795 def initialize(resource_arn: nil) @resource_arn = resource_arn Jsii::Type.check_type(@resource_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "resourceArn") unless @resource_arn.nil? end |
Instance Attribute Details
#resource_arn ⇒ String? (readonly)
The Amazon Resource Name (ARN) of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection.
804 805 806 |
# File 'network_firewall/cfn_tls_inspection_configuration.rb', line 804 def resource_arn @resource_arn end |
Class Method Details
.jsii_properties ⇒ Object
806 807 808 809 810 |
# File 'network_firewall/cfn_tls_inspection_configuration.rb', line 806 def self.jsii_properties { :resource_arn => "resourceArn", } end |
Instance Method Details
#to_jsii ⇒ Object
812 813 814 815 816 817 818 |
# File 'network_firewall/cfn_tls_inspection_configuration.rb', line 812 def to_jsii result = {} result.merge!({ "resourceArn" => @resource_arn, }) result.compact end |