Class: Aws::PCS::Types::NetworkingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PCS::Types::NetworkingRequest
- Defined in:
- gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb
Overview
The networking configuration for the cluster's control plane.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
-
#subnet_ids ⇒ Array<String>
The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
1259 1260 1261 1262 1263 1264 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 1259 class NetworkingRequest < Struct.new( :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The list of subnet IDs where Amazon Web Services PCS creates an
Elastic Network Interface (ENI) to enable communication between
managed controllers and Amazon Web Services PCS resources. Subnet
IDs have the form subnet-0123456789abcdef0
.
Subnets can't be in Outposts, Wavelength or an Amazon Web Services Local Zone.
1259 1260 1261 1262 1263 1264 |
# File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 1259 class NetworkingRequest < Struct.new( :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |