You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppMesh::Types::VirtualServiceBackend

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing VirtualServiceBackend as input to an Aws::Client method, you can use a vanilla Hash:

{
  client_policy: {
    tls: {
      enforce: false,
      ports: [1],
      validation: { # required
        trust: { # required
          acm: {
            certificate_authority_arns: ["Arn"], # required
          },
          file: {
            certificate_chain: "FilePath", # required
          },
        },
      },
    },
  },
  virtual_service_name: "ServiceName", # required
}

An object that represents a virtual service backend for a virtual node.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#client_policyTypes::ClientPolicy

A reference to an object that represents the client policy for a backend.

Returns:

  • (Types::ClientPolicy)

    A reference to an object that represents the client policy for a backend.

#virtual_service_nameString

The name of the virtual service that is acting as a virtual node backend.

Returns:

  • (String)

    The name of the virtual service that is acting as a virtual node backend.