Class: Aws::AppMesh::Types::VirtualGatewayClientTlsCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayClientTlsCertificate
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
VirtualGatewayClientTlsCertificate is a union - when making an API calls you must set exactly one of the members.
VirtualGatewayClientTlsCertificate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VirtualGatewayClientTlsCertificate corresponding to the set member.
An object that represents the virtual gateway’s client’s Transport Layer Security (TLS) certificate.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::VirtualGatewayListenerTlsFileCertificate
An object that represents a local file certificate.
-
#sds ⇒ Types::VirtualGatewayListenerTlsSdsCertificate
A reference to an object that represents a virtual gateway’s client’s Secret Discovery Service certificate.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file ⇒ Types::VirtualGatewayListenerTlsFileCertificate
An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see [ Transport Layer Security (TLS) ][1].
4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4991 class VirtualGatewayClientTlsCertificate < Struct.new( :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class File < VirtualGatewayClientTlsCertificate; end class Sds < VirtualGatewayClientTlsCertificate; end class Unknown < VirtualGatewayClientTlsCertificate; end end |
#sds ⇒ Types::VirtualGatewayListenerTlsSdsCertificate
A reference to an object that represents a virtual gateway’s client’s Secret Discovery Service certificate.
4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4991 class VirtualGatewayClientTlsCertificate < Struct.new( :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class File < VirtualGatewayClientTlsCertificate; end class Sds < VirtualGatewayClientTlsCertificate; end class Unknown < VirtualGatewayClientTlsCertificate; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4991 4992 4993 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4991 def unknown @unknown end |