ApplicationEndpointProps

class aws_rfdk.ApplicationEndpointProps(*, address, port, protocol=None)

Bases: object

Properties for constructing an {@link ApplicationEndpoint}.

Parameters
  • address (str) – The address (either an IP or hostname) of the endpoint.

  • port (Union[int, float]) – The port number of the endpoint.

  • protocol (Optional[ApplicationProtocol]) – The application layer protocol of the endpoint. Default: HTTPS

Attributes

address

The address (either an IP or hostname) of the endpoint.

Return type

str

port

The port number of the endpoint.

Return type

Union[int, float]

protocol

The application layer protocol of the endpoint.

Default

HTTPS

Return type

Optional[ApplicationProtocol]