Show / Hide Table of Contents

Class CfnLocationEFS.Ec2ConfigProperty

The subnet and security groups that AWS DataSync uses to access your Amazon EFS file system.

Inheritance
System.Object
CfnLocationEFS.Ec2ConfigProperty
Implements
CfnLocationEFS.IEc2ConfigProperty
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.AWS.DataSync.dll
Syntax (csharp)
public class Ec2ConfigProperty : Object, CfnLocationEFS.IEc2ConfigProperty
Syntax (vb)
Public Class Ec2ConfigProperty
    Inherits Object
    Implements CfnLocationEFS.IEc2ConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationefs-ec2config.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataSync;

Ec2ConfigProperty ec2ConfigProperty = new Ec2ConfigProperty {
    SecurityGroupArns = new [] { "securityGroupArns" },
    SubnetArn = "subnetArn"
};

Synopsis

Constructors

Ec2ConfigProperty()

Properties

SecurityGroupArns

Specifies the Amazon Resource Names (ARNs) of the security groups associated with an Amazon EFS file system's mount target.

SubnetArn

Specifies the ARN of a subnet where DataSync creates the network interfaces for managing traffic during your transfer.

Constructors

Ec2ConfigProperty()

public Ec2ConfigProperty()

Properties

SecurityGroupArns

Specifies the Amazon Resource Names (ARNs) of the security groups associated with an Amazon EFS file system's mount target.

public string[] SecurityGroupArns { get; set; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationefs-ec2config.html#cfn-datasync-locationefs-ec2config-securitygrouparns

SubnetArn

Specifies the ARN of a subnet where DataSync creates the network interfaces for managing traffic during your transfer.

public string SubnetArn { get; set; }
Property Value

System.String

Remarks

The subnet must be located:

    You don't need to specify a subnet that includes a file system mount target.
    

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationefs-ec2config.html#cfn-datasync-locationefs-ec2config-subnetarn

    Implements

    CfnLocationEFS.IEc2ConfigProperty
    Back to top Generated by DocFX