[][src]Struct rusoto_datasync::PrivateLinkConfig

pub struct PrivateLinkConfig {
    pub private_link_endpoint: Option<String>,
    pub security_group_arns: Option<Vec<String>>,
    pub subnet_arns: Option<Vec<String>>,
    pub vpc_endpoint_id: Option<String>,
}

The VPC endpoint, subnet, and security group that an agent uses to access IP addresses in a VPC (Virtual Private Cloud).

Fields

private_link_endpoint: Option<String>

The private endpoint that is configured for an agent that has access to IP addresses in a PrivateLink. An agent that is configured with this endpoint will not be accessible over the public internet.

security_group_arns: Option<Vec<String>>

The Amazon Resource Names (ARNs) of the security groups that are configured for the EC2 resource that hosts an agent activated in a VPC or an agent that has access to a VPC endpoint.

subnet_arns: Option<Vec<String>>

The Amazon Resource Names (ARNs) of the subnets that are configured for an agent activated in a VPC or an agent that has access to a VPC endpoint.

vpc_endpoint_id: Option<String>

The ID of the VPC endpoint that is configured for an agent. An agent that is configured with a VPC endpoint will not be accessible over the public internet.

Trait Implementations

impl Clone for PrivateLinkConfig[src]

impl Debug for PrivateLinkConfig[src]

impl Default for PrivateLinkConfig[src]

impl<'de> Deserialize<'de> for PrivateLinkConfig[src]

impl PartialEq<PrivateLinkConfig> for PrivateLinkConfig[src]

impl StructuralPartialEq for PrivateLinkConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.