Struct rusoto_efs::CreateMountTargetRequest[][src]

pub struct CreateMountTargetRequest {
    pub file_system_id: String,
    pub ip_address: Option<String>,
    pub security_groups: Option<Vec<String>>,
    pub subnet_id: String,
}

Fields

ID of the file system for which to create the mount target.

Valid IPv4 address within the address range of the specified subnet.

Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as subnet specified.

ID of the subnet to add the mount target in.

Trait Implementations

impl Default for CreateMountTargetRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateMountTargetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateMountTargetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateMountTargetRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations