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

Class: Aws::ServiceDiscovery::Types::UpdateServiceRequest

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

Overview

Note:

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

{
  id: "ResourceId", # required
  service: { # required
    description: "ResourceDescription",
    dns_config: {
      dns_records: [ # required
        {
          type: "SRV", # required, accepts SRV, A, AAAA, CNAME
          ttl: 1, # required
        },
      ],
    },
    health_check_config: {
      type: "HTTP", # required, accepts HTTP, HTTPS, TCP
      resource_path: "ResourcePath",
      failure_threshold: 1,
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID of the service that you want to update.

Returns:

  • (String)

    The ID of the service that you want to update.

#serviceTypes::ServiceChange

A complex type that contains the new settings for the service.

Returns: