Class: Aws::AppMesh::Types::UpdateVirtualNodeInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appmesh/types.rb

Overview

Note:

When making an API call, you may pass UpdateVirtualNodeInput data as a hash:

{
  client_token: "String",
  mesh_name: "ResourceName", # required
  spec: { # required
    backends: [
      {
        virtual_service: {
          virtual_service_name: "ServiceName", # required
        },
      },
    ],
    listeners: [
      {
        health_check: {
          healthy_threshold: 1, # required
          interval_millis: 1, # required
          path: "String",
          port: 1,
          protocol: "grpc", # required, accepts grpc, http, http2, tcp
          timeout_millis: 1, # required
          unhealthy_threshold: 1, # required
        },
        port_mapping: { # required
          port: 1, # required
          protocol: "grpc", # required, accepts grpc, http, http2, tcp
        },
      },
    ],
    logging: {
      access_log: {
        file: {
          path: "FilePath", # required
        },
      },
    },
    service_discovery: {
      aws_cloud_map: {
        attributes: [
          {
            key: "AwsCloudMapInstanceAttributeKey", # required
            value: "AwsCloudMapInstanceAttributeValue", # required
          },
        ],
        namespace_name: "AwsCloudMapName", # required
        service_name: "AwsCloudMapName", # required
      },
      dns: {
        hostname: "Hostname", # required
      },
    },
  },
  virtual_node_name: "ResourceName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


115
116
117
118
119
120
121
# File 'lib/aws-sdk-appmesh/types.rb', line 115

class UpdateVirtualNodeInput < Struct.new(
  :client_token,
  :mesh_name,
  :spec,
  :virtual_node_name)
  include Aws::Structure
end

#mesh_nameString

The name of the service mesh that the virtual node resides in.

Returns:

  • (String)


115
116
117
118
119
120
121
# File 'lib/aws-sdk-appmesh/types.rb', line 115

class UpdateVirtualNodeInput < Struct.new(
  :client_token,
  :mesh_name,
  :spec,
  :virtual_node_name)
  include Aws::Structure
end

#specTypes::VirtualNodeSpec

The new virtual node specification to apply. This overwrites the existing data.



115
116
117
118
119
120
121
# File 'lib/aws-sdk-appmesh/types.rb', line 115

class UpdateVirtualNodeInput < Struct.new(
  :client_token,
  :mesh_name,
  :spec,
  :virtual_node_name)
  include Aws::Structure
end

#virtual_node_nameString

The name of the virtual node to update.

Returns:

  • (String)


115
116
117
118
119
120
121
# File 'lib/aws-sdk-appmesh/types.rb', line 115

class UpdateVirtualNodeInput < Struct.new(
  :client_token,
  :mesh_name,
  :spec,
  :virtual_node_name)
  include Aws::Structure
end