Class: Aws::AppMesh::Types::BackendDefaults
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::BackendDefaults
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass BackendDefaults data as a hash:
{
client_policy: {
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 the default properties for a backend.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_policy ⇒ Types::ClientPolicy
A reference to an object that represents a client policy.
Instance Attribute Details
#client_policy ⇒ Types::ClientPolicy
A reference to an object that represents a client policy.
196 197 198 199 200 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 196 class BackendDefaults < Struct.new( :client_policy) SENSITIVE = [] include Aws::Structure end |