SrvRecordValue
- class aws_cdk.aws_route53.SrvRecordValue(*, host_name, port, priority, weight)
Bases:
object
Properties for a SRV record value.
- Parameters:
host_name (
str
) – The server host name.port (
Union
[int
,float
]) – The port.priority (
Union
[int
,float
]) – The priority.weight (
Union
[int
,float
]) – The weight.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_route53 as route53 srv_record_value = route53.SrvRecordValue( host_name="hostName", port=123, priority=123, weight=123 )
Attributes
- host_name
The server host name.
- port
The port.
- priority
The priority.
- weight
The weight.