Class: AWSCDK::AppMesh::CfnVirtualGateway::VirtualGatewayListenerTLSSdsCertificateProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(secret_name:) ⇒ VirtualGatewayListenerTLSSdsCertificateProperty

Returns a new instance of VirtualGatewayListenerTLSSdsCertificateProperty.

Parameters:

  • secret_name (String)

    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.



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_nameString (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_propertiesObject



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_jsiiObject



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