Class: Aws::AppMesh::Types::VirtualGatewayClientPolicyTls
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppMesh::Types::VirtualGatewayClientPolicyTls
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appmesh/types.rb
 
Overview
An object that represents a Transport Layer Security (TLS) client policy.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate  ⇒ Types::VirtualGatewayClientTlsCertificate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A reference to an object that represents a virtual gateway’s client’s Transport Layer Security (TLS) certificate.
 - 
  
    
      #enforce  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the policy is enforced.
 - 
  
    
      #ports  ⇒ Array<Integer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One or more ports that the policy is enforced for.
 - 
  
    
      #validation  ⇒ Types::VirtualGatewayTlsValidationContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A reference to an object that represents a Transport Layer Security (TLS) validation context.
 
Instance Attribute Details
#certificate ⇒ Types::VirtualGatewayClientTlsCertificate
A reference to an object that represents a virtual gateway’s client’s Transport Layer Security (TLS) certificate.
      4957 4958 4959 4960 4961 4962 4963 4964  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 4957 class VirtualGatewayClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  | 
  
#enforce ⇒ Boolean
Whether the policy is enforced. The default is ‘True`, if a value isn’t specified.
      4957 4958 4959 4960 4961 4962 4963 4964  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 4957 class VirtualGatewayClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  | 
  
#ports ⇒ Array<Integer>
One or more ports that the policy is enforced for.
      4957 4958 4959 4960 4961 4962 4963 4964  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 4957 class VirtualGatewayClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  | 
  
#validation ⇒ Types::VirtualGatewayTlsValidationContext
A reference to an object that represents a Transport Layer Security (TLS) validation context.
      4957 4958 4959 4960 4961 4962 4963 4964  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 4957 class VirtualGatewayClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  |