Class: AWSCDK::AppMesh::CfnVirtualGateway::VirtualGatewayListenerTLSSdsCertificateProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppMesh::CfnVirtualGateway::VirtualGatewayListenerTLSSdsCertificateProperty
- Defined in:
- app_mesh/cfn_virtual_gateway.rb
Overview
An object that represents the virtual gateway's listener's Secret Discovery Service certificate.The proxy must be configured with a local SDS provider via a Unix Domain Socket. See App Mesh TLS documentation for more info.
Instance Attribute Summary collapse
-
#secret_name ⇒ String
readonly
A reference to an object that represents the name of the secret secret requested from the Secret Discovery Service provider representing Transport Layer Security (TLS) materials like a certificate or certificate chain.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(secret_name:) ⇒ VirtualGatewayListenerTLSSdsCertificateProperty
constructor
A new instance of VirtualGatewayListenerTLSSdsCertificateProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(secret_name:) ⇒ VirtualGatewayListenerTLSSdsCertificateProperty
Returns a new instance of VirtualGatewayListenerTLSSdsCertificateProperty.
1550 1551 1552 1553 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 1550 def initialize(secret_name:) @secret_name = secret_name Jsii::Type.check_type(@secret_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "secretName") end |
Instance Attribute Details
#secret_name ⇒ String (readonly)
A reference to an object that represents the name of the secret secret requested from the Secret Discovery Service provider representing Transport Layer Security (TLS) materials like a certificate or certificate chain.
1559 1560 1561 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 1559 def secret_name @secret_name end |
Class Method Details
.jsii_properties ⇒ Object
1561 1562 1563 1564 1565 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 1561 def self.jsii_properties { :secret_name => "secretName", } end |
Instance Method Details
#to_jsii ⇒ Object
1567 1568 1569 1570 1571 1572 1573 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 1567 def to_jsii result = {} result.merge!({ "secretName" => @secret_name, }) result.compact end |