IpInstanceProps¶
-
class
aws_cdk.aws_servicediscovery.
IpInstanceProps
(*, custom_attributes=None, instance_id=None, ipv4=None, ipv6=None, port=None, service)¶ Bases:
aws_cdk.aws_servicediscovery.IpInstanceBaseProps
- Parameters
custom_attributes (
Optional
[Mapping
[str
,str
]]) – Custom attributes of the instance. Default: noneinstance_id (
Optional
[str
]) – The id of the instance resource. Default: Automatically generated nameipv4 (
Optional
[str
]) – If the service that you specify contains a template for an A record, the IPv4 address that you want AWS Cloud Map to use for the value of the A record. Default: noneipv6 (
Optional
[str
]) – If the service that you specify contains a template for an AAAA record, the IPv6 address that you want AWS Cloud Map to use for the value of the AAAA record. Default: noneport (
Union
[int
,float
,None
]) – The port on the endpoint that you want AWS Cloud Map to perform health checks on. This value is also used for the port value in an SRV record if the service that you specify includes an SRV record. You can also specify a default port that is applied to all instances in the Service configuration. Default: 80service (
IService
) – The Cloudmap service this resource is registered to.
Attributes
-
custom_attributes
¶ Custom attributes of the instance.
- Default
none
- Return type
Optional
[Mapping
[str
,str
]]
-
instance_id
¶ The id of the instance resource.
- Default
Automatically generated name
- Return type
Optional
[str
]
-
ipv4
¶ If the service that you specify contains a template for an A record, the IPv4 address that you want AWS Cloud Map to use for the value of the A record.
- Default
none
- Return type
Optional
[str
]
-
ipv6
¶ If the service that you specify contains a template for an AAAA record, the IPv6 address that you want AWS Cloud Map to use for the value of the AAAA record.
- Default
none
- Return type
Optional
[str
]
-
port
¶ The port on the endpoint that you want AWS Cloud Map to perform health checks on.
This value is also used for the port value in an SRV record if the service that you specify includes an SRV record. You can also specify a default port that is applied to all instances in the Service configuration.
- Default
80
- Return type
Union
[int
,float
,None
]