Class: Aws::MigrationHubRefactorSpaces::Types::UrlEndpointSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubRefactorSpaces::Types::UrlEndpointSummary
- Defined in:
- gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb
Overview
The summary of the configuration for the URL endpoint type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#health_url ⇒ String
The health check URL of the URL endpoint type.
-
#url ⇒ String
The URL to route traffic to.
Instance Attribute Details
#health_url ⇒ String
The health check URL of the URL endpoint type. If the URL is a
public endpoint, the HealthUrl must also be a public endpoint. If
the URL is a private endpoint inside a virtual private cloud (VPC),
the health URL must also be a private endpoint, and the host must be
the same as the URL.
2513 2514 2515 2516 2517 2518 |
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2513 class UrlEndpointSummary < Struct.new( :health_url, :url) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
The URL to route traffic to. The URL must be an rfc3986-formatted
URL. If the host is a domain name, the name must be resolvable
over the public internet. If the scheme is https, the top level
domain of the host must be listed in the IANA root zone
database.
2513 2514 2515 2516 2517 2518 |
# File 'gems/aws-sdk-migrationhubrefactorspaces/lib/aws-sdk-migrationhubrefactorspaces/types.rb', line 2513 class UrlEndpointSummary < Struct.new( :health_url, :url) SENSITIVE = [] include Aws::Structure end |