ApplicationEndpoint

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

Bases: Endpoint

An endpoint serving http or https for an application.

Constructs a {@link ApplicationEndpoint} instance.

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

Methods

port_as_string()

Returns the port number as a string representation that can be used for embedding within other strings.

This is intended to deal with CDK’s token system. Numeric CDK tokens are not expanded when their string representation is embedded in a string. This function returns the port either as an unresolved string token or as a resolved string representation of the port value.

Return type:

str

Returns:

An (un)resolved string representation of the endpoint’s port number

Attributes

application_protocol

The http protocol that this web application listens on.

hostname

The hostname of the endpoint.

port

The port of the endpoint.

port_number

The port number of the endpoint.

This can potentially be a CDK token. If you need to embed the port in a string (e.g. instance user data script), use {@link Endpoint.portAsString}.

protocol

The protocol of the endpoint.

socket_address

PORT” for this endpoint.

Type:

The combination of “HOSTNAME