AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the UpdateService operation. Submits a request to perform the following operations:

For public and private DNS namespaces, note the following:

When you update settings for a service, Cloud Map also updates the corresponding settings in all the records and health checks that were created by using the specified service.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ServiceDiscovery.AmazonServiceDiscoveryRequest
      Amazon.ServiceDiscovery.Model.UpdateServiceRequest

Namespace: Amazon.ServiceDiscovery.Model
Assembly: AWSSDK.ServiceDiscovery.dll
Version: 3.x.y.z

Syntax

C#
public class UpdateServiceRequest : AmazonServiceDiscoveryRequest
         IAmazonWebServiceRequest

The UpdateServiceRequest type exposes the following members

Constructors

NameDescription
Public Method UpdateServiceRequest()

Properties

NameTypeDescription
Public Property Id System.String

Gets and sets the property Id.

The ID of the service that you want to update.

Public Property Service Amazon.ServiceDiscovery.Model.ServiceChange

Gets and sets the property Service.

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

Examples

This example submits a request to replace the DnsConfig and HealthCheckConfig settings of a specified service.

UpdateService Example


var client = new AmazonServiceDiscoveryClient();
var response = client.UpdateService(new UpdateServiceRequest 
{
    Id = "srv-e4anhexample0004",
    Service = new ServiceChange {
        DnsConfig = new DnsConfigChange { DnsRecords = new List<DnsRecord> {
            new DnsRecord {
                TTL = 60,
                Type = "A"
            }
        } },
        HealthCheckConfig = new HealthCheckConfig {
            FailureThreshold = 2,
            ResourcePath = "/",
            Type = "HTTP"
        }
    }
});

string operationId = response.OperationId;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5