Class: Aws::GroundStation::Types::EndpointDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::EndpointDetails
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
When making an API call, you may pass EndpointDetails data as a hash:
{
endpoint: {
address: {
name: "String", # required
port: 1, # required
},
mtu: 1,
name: "SafeName",
status: "created", # accepts created, creating, deleted, deleting, failed
},
security_details: {
role_arn: "RoleArn", # required
security_group_ids: ["String"], # required
subnet_ids: ["String"], # required
},
}
Information about the endpoint details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint ⇒ Types::DataflowEndpoint
A dataflow endpoint.
-
#security_details ⇒ Types::SecurityDetails
Endpoint security details.
Instance Attribute Details
#endpoint ⇒ Types::DataflowEndpoint
A dataflow endpoint.
1067 1068 1069 1070 1071 1072 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1067 class EndpointDetails < Struct.new( :endpoint, :security_details) SENSITIVE = [] include Aws::Structure end |
#security_details ⇒ Types::SecurityDetails
Endpoint security details.
1067 1068 1069 1070 1071 1072 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1067 class EndpointDetails < Struct.new( :endpoint, :security_details) SENSITIVE = [] include Aws::Structure end |