Class: AWSCDK::ServiceDiscovery::CfnService::DNSRecordProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ServiceDiscovery::CfnService::DNSRecordProperty
- Defined in:
- service_discovery/cfn_service.rb
Overview
A complex type that contains information about the RouteĀ 53 DNS records that you want AWS Cloud Map to create when you register an instance.
Instance Attribute Summary collapse
-
#ttl ⇒ Numeric
readonly
The amount of time, in seconds, that you want DNS resolvers to cache the settings for this record.
-
#type ⇒ String
readonly
The type of the resource, which indicates the type of value that Route 53 returns in response to DNS queries.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(ttl:, type:) ⇒ DNSRecordProperty
constructor
A new instance of DNSRecordProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(ttl:, type:) ⇒ DNSRecordProperty
Returns a new instance of DNSRecordProperty.
744 745 746 747 748 749 |
# File 'service_discovery/cfn_service.rb', line 744 def initialize(ttl:, type:) @ttl = ttl Jsii::Type.check_type(@ttl, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "ttl") @type = type Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") end |
Instance Attribute Details
#ttl ⇒ Numeric (readonly)
The amount of time, in seconds, that you want DNS resolvers to cache the settings for this record.
Alias records don't include a TTL because RouteĀ 53 uses the TTL for the AWS resource that an alias record routes traffic to. If you include the
AWS_ALIAS_DNS_NAMEattribute when you submit a RegisterInstance request, theTTLvalue 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.
757 758 759 |
# File 'service_discovery/cfn_service.rb', line 757 def ttl @ttl end |
#type ⇒ String (readonly)
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:
AAAAAAandAAAASRVCNAME
If you want AWS 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:
- You specify the domain name that you want to route traffic to when you register an instance. For more information, see Attributes in the topic RegisterInstance .
- You must specify
WEIGHTEDfor the value ofRoutingPolicy. - You can't specify both
CNAMEforTypeand settings forHealthCheckConfig. If you do, the request will fail with anInvalidInputerror. - SRV - Route 53 returns the value for an
SRVrecord. The value for anSRVrecord uses the following values:
priority weight port service-hostname
Note the following about the values:
- The values of
priorityandweightare both set to1and can't be changed. - The value of
portcomes from the value that you specify for theAWS_INSTANCE_PORTattribute when you submit a RegisterInstance request. - The value of
service-hostnameis a concatenation of the following values: - The value that you specify for
InstanceIdwhen you register an instance. - The name of the service.
- The name of the namespace.
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:
test.backend.example.com
If you specify settings for an SRV record and if you specify values for AWS_INSTANCE_IPV4 , AWS_INSTANCE_IPV6 , or both in the RegisterInstance request, AWS 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.
801 802 803 |
# File 'service_discovery/cfn_service.rb', line 801 def type @type end |
Class Method Details
.jsii_properties ⇒ Object
803 804 805 806 807 808 |
# File 'service_discovery/cfn_service.rb', line 803 def self.jsii_properties { :ttl => "ttl", :type => "type", } end |
Instance Method Details
#to_jsii ⇒ Object
810 811 812 813 814 815 816 817 |
# File 'service_discovery/cfn_service.rb', line 810 def to_jsii result = {} result.merge!({ "ttl" => @ttl, "type" => @type, }) result.compact end |