Class: Aws::MWAAServerless::Types::NetworkConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAAServerless::Types::NetworkConfiguration
- Defined in:
- gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb
Overview
Network configuration for workflow execution. Specifies VPC security groups and subnets for secure network access. When provided, Amazon Managed Workflows for Apache Airflow Serverless deploys ECS worker tasks in your specified VPC configuration, enabling secure access to VPC-only resources. The service uses a proxy API container architecture where one container handles external communication while the worker container connects to your VPC for task execution. This design provides both security isolation and connectivity flexibility.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
A list of VPC security group IDs to associate with the workflow execution environment.
-
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs where the workflow execution environment is deployed.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
A list of VPC security group IDs to associate with the workflow execution environment.
875 876 877 878 879 880 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 875 class NetworkConfiguration < Struct.new( :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs where the workflow execution environment is deployed.
875 876 877 878 879 880 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 875 class NetworkConfiguration < Struct.new( :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |