Class: Aws::PCS::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::PCS::Types::Endpoint
- Defined in:
- gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb
Overview
An endpoint available for interaction with the scheduler.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#port ⇒ String
The endpoint's connection port number.
-
#private_ip_address ⇒ String
The endpoint's private IP address.
-
#public_ip_address ⇒ String
The endpoint's public IP address.
-
#type ⇒ String
Indicates the type of endpoint running at the specific IP address.
Instance Attribute Details
#port ⇒ String
The endpoint's connection port number.
Example: 1234
866 867 868 869 870 871 872 873 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 866 class Endpoint < Struct.new( :type, :private_ip_address, :public_ip_address, :port) SENSITIVE = [] include Aws::Structure end |
#private_ip_address ⇒ String
The endpoint's private IP address.
Example: 2.2.2.2
866 867 868 869 870 871 872 873 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 866 class Endpoint < Struct.new( :type, :private_ip_address, :public_ip_address, :port) SENSITIVE = [] include Aws::Structure end |
#public_ip_address ⇒ String
The endpoint's public IP address.
Example: 1.1.1.1
866 867 868 869 870 871 872 873 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 866 class Endpoint < Struct.new( :type, :private_ip_address, :public_ip_address, :port) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Indicates the type of endpoint running at the specific IP address.
866 867 868 869 870 871 872 873 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 866 class Endpoint < Struct.new( :type, :private_ip_address, :public_ip_address, :port) SENSITIVE = [] include Aws::Structure end |