Class: Aws::AppMesh::Types::ClientPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ClientPolicy
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass ClientPolicy data as a hash:
{
tls: {
certificate: {
file: {
certificate_chain: "FilePath", # required
private_key: "FilePath", # required
},
sds: {
secret_name: "SdsSecretName", # required
},
},
enforce: false,
ports: [1],
validation: { # required
subject_alternative_names: {
match: { # required
exact: ["SubjectAlternativeName"], # required
},
},
trust: { # required
acm: {
certificate_authority_arns: ["Arn"], # required
},
file: {
certificate_chain: "FilePath", # required
},
sds: {
secret_name: "SdsSecretName", # required
},
},
},
},
}
An object that represents a client policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tls ⇒ Types::ClientPolicyTls
A reference to an object that represents a Transport Layer Security (TLS) client policy.
Instance Attribute Details
#tls ⇒ Types::ClientPolicyTls
A reference to an object that represents a Transport Layer Security (TLS) client policy.
262 263 264 265 266 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 262 class ClientPolicy < Struct.new( :tls) SENSITIVE = [] include Aws::Structure end |