Class: Aws::DataSync::Types::Ec2Config
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::Ec2Config
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
The subnet and security groups that DataSync uses to connect to one of your Amazon EFS file system's mount targets.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_arns ⇒ Array<String>
Specifies the Amazon Resource Names (ARNs) of the security groups associated with an Amazon EFS file system's mount target.
-
#subnet_arn ⇒ String
Specifies the ARN of a subnet where DataSync creates the [network interfaces][1] for managing traffic during your transfer.
Instance Attribute Details
#security_group_arns ⇒ Array<String>
Specifies the Amazon Resource Names (ARNs) of the security groups associated with an Amazon EFS file system's mount target.
3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3526 class Ec2Config < Struct.new( :subnet_arn, :security_group_arns) SENSITIVE = [] include Aws::Structure end |
#subnet_arn ⇒ String
Specifies the ARN of a subnet where DataSync creates the network interfaces for managing traffic during your transfer.
The subnet must be located:
In the same virtual private cloud (VPC) as the Amazon EFS file system.
In the same Availability Zone as at least one mount target for the Amazon EFS file system.
3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3526 class Ec2Config < Struct.new( :subnet_arn, :security_group_arns) SENSITIVE = [] include Aws::Structure end |