Class: Aws::GroundStation::Types::DataflowEndpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::DataflowEndpoint
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
When making an API call, you may pass DataflowEndpoint data as a hash:
{
address: {
name: "String", # required
port: 1, # required
},
mtu: 1,
name: "SafeName",
status: "created", # accepts created, creating, deleted, deleting, failed
}
Information about a dataflow endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ Types::SocketAddress
Socket address of a dataflow endpoint.
-
#mtu ⇒ Integer
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
-
#name ⇒ String
Name of a dataflow endpoint.
-
#status ⇒ String
Status of a dataflow endpoint.
Instance Attribute Details
#address ⇒ Types::SocketAddress
Socket address of a dataflow endpoint.
695 696 697 698 699 700 701 702 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 695 class DataflowEndpoint < Struct.new( :address, :mtu, :name, :status) SENSITIVE = [] include Aws::Structure end |
#mtu ⇒ Integer
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
695 696 697 698 699 700 701 702 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 695 class DataflowEndpoint < Struct.new( :address, :mtu, :name, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of a dataflow endpoint.
695 696 697 698 699 700 701 702 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 695 class DataflowEndpoint < Struct.new( :address, :mtu, :name, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Status of a dataflow endpoint.
695 696 697 698 699 700 701 702 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 695 class DataflowEndpoint < Struct.new( :address, :mtu, :name, :status) SENSITIVE = [] include Aws::Structure end |