Class: Aws::AppMesh::Types::DeleteVirtualServiceInput

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

{
  mesh_name: "ResourceName", # required
  virtual_service_name: "ServiceName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#mesh_nameString

The name of the service mesh to delete the virtual service in.

Returns:

  • (String)


3784
3785
3786
3787
3788
# File 'lib/aws-sdk-appmesh/types.rb', line 3784

class DeleteVirtualServiceInput < Struct.new(
  :mesh_name,
  :virtual_service_name)
  include Aws::Structure
end

#virtual_service_nameString

The name of the virtual service to delete.

Returns:

  • (String)


3784
3785
3786
3787
3788
# File 'lib/aws-sdk-appmesh/types.rb', line 3784

class DeleteVirtualServiceInput < Struct.new(
  :mesh_name,
  :virtual_service_name)
  include Aws::Structure
end