Class: Aws::AppMesh::Types::ClientPolicyTls
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppMesh::Types::ClientPolicyTls
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appmesh/types.rb
 
Overview
A reference to an object that represents a Transport Layer Security (TLS) client policy.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate  ⇒ Types::ClientTlsCertificate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A reference to an object that represents a client’s TLS certificate.
 - 
  
    
      #enforce  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the policy is enforced.
 - 
  
    
      #ports  ⇒ Array<Integer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One or more ports that the policy is enforced for.
 - 
  
    
      #validation  ⇒ Types::TlsValidationContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A reference to an object that represents a TLS validation context.
 
Instance Attribute Details
#certificate ⇒ Types::ClientTlsCertificate
A reference to an object that represents a client’s TLS certificate.
      194 195 196 197 198 199 200 201  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 194 class ClientPolicyTls < 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.
      194 195 196 197 198 199 200 201  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 194 class ClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  | 
  
#ports ⇒ Array<Integer>
One or more ports that the policy is enforced for.
      194 195 196 197 198 199 200 201  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 194 class ClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  | 
  
#validation ⇒ Types::TlsValidationContext
A reference to an object that represents a TLS validation context.
      194 195 196 197 198 199 200 201  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 194 class ClientPolicyTls < Struct.new( :certificate, :enforce, :ports, :validation) SENSITIVE = [] include Aws::Structure end  |