Class: Aws::AppMesh::Types::UpdateVirtualServiceInput

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 UpdateVirtualServiceInput data as a hash:

{
  client_token: "String",
  mesh_name: "ResourceName", # required
  spec: { # required
    provider: {
      virtual_node: {
        virtual_node_name: "ResourceName", # required
      },
      virtual_router: {
        virtual_router_name: "ResourceName", # required
      },
    },
  },
  virtual_service_name: "ServiceName", # 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)


611
612
613
614
615
616
617
# File 'lib/aws-sdk-appmesh/types.rb', line 611

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

#mesh_nameString

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

Returns:

  • (String)


611
612
613
614
615
616
617
# File 'lib/aws-sdk-appmesh/types.rb', line 611

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

#specTypes::VirtualServiceSpec

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



611
612
613
614
615
616
617
# File 'lib/aws-sdk-appmesh/types.rb', line 611

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

#virtual_service_nameString

The name of the virtual service to update.

Returns:

  • (String)


611
612
613
614
615
616
617
# File 'lib/aws-sdk-appmesh/types.rb', line 611

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