update_service
(**kwargs)¶Submits a request to perform the following operations:
DnsRecords
configurationsHealthCheckConfig
for a specified serviceNote
You can't add, update, or delete a HealthCheckCustomConfig
configuration.
For public and private DNS namespaces, note the following:
DnsRecords
or HealthCheckConfig
configurations from an UpdateService
request, the configurations are deleted from the service.HealthCheckCustomConfig
configuration from an UpdateService
request, the configuration isn't deleted from the service.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.
See also: AWS API Documentation
Request Syntax
response = client.update_service(
Id='string',
Service={
'Description': 'string',
'DnsConfig': {
'DnsRecords': [
{
'Type': 'SRV'|'A'|'AAAA'|'CNAME',
'TTL': 123
},
]
},
'HealthCheckConfig': {
'Type': 'HTTP'|'HTTPS'|'TCP',
'ResourcePath': 'string',
'FailureThreshold': 123
}
}
)
[REQUIRED]
The ID of the service that you want to update.
[REQUIRED]
A complex type that contains the new settings for the service.
A description for the service.
Information about the Route 53 DNS records that you want Cloud Map to create when you register an instance.
An array that contains one DnsRecord
object for each Route 53 record that you want Cloud Map to create when you register an instance.
A complex type that contains information about the Route 53 DNS records that you want Cloud Map to create when you register an instance.
The type of the resource, which indicates the type of value that Route 53 returns in response to DNS queries. You can specify values for Type
in the following combinations:
A
AAAA
A
and AAAA
SRV
CNAME
If you want Cloud Map to create a Route 53 alias record when you register an instance, specify A
or AAAA
for Type
.
You specify other settings, such as the IP address for A
and AAAA
records, when you register an instance. For more information, see RegisterInstance.
The following values are supported:
A
Route 53 returns the IP address of the resource in IPv4 format, such as 192.0.2.44.
AAAA
Route 53 returns the IP address of the resource in IPv6 format, such as 2001:0db8:85a3:0000:0000:abcd:0001:2345.
CNAME
Route 53 returns the domain name of the resource, such as www.example.com. Note the following:
WEIGHTED
for the value of RoutingPolicy
.CNAME
for Type
and settings for HealthCheckConfig
. If you do, the request will fail with an InvalidInput
error.SRV
Route 53 returns the value for an SRV
record. The value for an SRV
record uses the following values:
priority weight port service-hostname
Note the following about the values:
priority
and weight
are both set to 1
and can't be changed.port
comes from the value that you specify for the AWS_INSTANCE_PORT
attribute when you submit a RegisterInstance request.service-hostname
is a concatenation of the following values:InstanceId
when you register an instance.For example, if the value of InstanceId
is test
, the name of the service is backend
, and the name of the namespace is example.com
, the value of service-hostname
is the following:
test.backend.example.com
If you specify settings for an SRV
record, note the following:
AWS_INSTANCE_IPV4
, AWS_INSTANCE_IPV6
, or both in the RegisterInstance
request, Cloud Map automatically creates A
and/or AAAA
records that have the same name as the value of service-hostname
in the SRV
record. You can ignore these records.SRV
format, such as HAProxy, see the Name element in the documentation about CreateService
for information about how to specify the correct name format.The amount of time, in seconds, that you want DNS resolvers to cache the settings for this record.
Note
Alias records don't include a TTL because Route 53 uses the TTL for the Amazon Web Services resource that an alias record routes traffic to. If you include the AWS_ALIAS_DNS_NAME
attribute when you submit a RegisterInstance request, the TTL
value is ignored. Always specify a TTL for the service; you can use a service to register instances that create either alias or non-alias records.
Public DNS and HTTP namespaces only. Settings for an optional health check. If you specify settings for a health check, Cloud Map associates the health check with the records that you specify inDnsConfig
.
The type of health check that you want to create, which indicates how Route 53 determines whether an endpoint is healthy.
Warning
You can't change the value of Type
after you create a health check.
You can create the following types of health checks:
Warning
If you specify HTTPS for the value of Type
, the endpoint must support TLS v1.0 or later.
TCP
for Type
, don't specify a value for ResourcePath
.For more information, see How Route 53 Determines Whether an Endpoint Is Healthy in the Route 53 Developer Guide .
The path that you want Route 53 to request when performing health checks. The path can be any value that your endpoint returns an HTTP status code of a 2xx or 3xx format for when the endpoint is healthy. An example file is /docs/route53-health-check.html
. Route 53 automatically adds the DNS name for the service. If you don't specify a value for ResourcePath
, the default value is /
.
If you specify TCP
for Type
, you must not specify a value for ResourcePath
.
The number of consecutive health checks that an endpoint must pass or fail for Route 53 to change the current status of the endpoint from unhealthy to healthy or the other way around. For more information, see How Route 53 Determines Whether an Endpoint Is Healthy in the Route 53 Developer Guide .
dict
Response Syntax
{
'OperationId': 'string'
}
Response Structure
(dict) --
OperationId (string) --
A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
Exceptions
ServiceDiscovery.Client.exceptions.DuplicateRequest
ServiceDiscovery.Client.exceptions.InvalidInput
ServiceDiscovery.Client.exceptions.ServiceNotFound
Examples
This example submits a request to replace the DnsConfig and HealthCheckConfig settings of a specified service.
response = client.update_service(
Id='srv-e4anhexample0004',
Service={
'DnsConfig': {
'DnsRecords': [
{
'TTL': 60,
'Type': 'A',
},
],
},
'HealthCheckConfig': {
'FailureThreshold': 2,
'ResourcePath': '/',
'Type': 'HTTP',
},
},
)
print(response)
Expected Output:
{
'OperationId': 'm35hsdrkxwjffm3xef4bxyy6vc3ewakx-jdn3y5g5',
'ResponseMetadata': {
'...': '...',
},
}