[][src]Struct rusoto_eks::RemoteAccessConfig

pub struct RemoteAccessConfig {
    pub ec_2_ssh_key: Option<String>,
    pub source_security_groups: Option<Vec<String>>,
}

An object representing the remote access configuration for the managed node group.

Fields

ec_2_ssh_key: Option<String>

The Amazon EC2 SSH key that provides access for SSH communication with the worker nodes in the managed node group. For more information, see Amazon EC2 Key Pairs in the Amazon Elastic Compute Cloud User Guide for Linux Instances.

source_security_groups: Option<Vec<String>>

The security groups that are allowed SSH access (port 22) to the worker nodes. If you specify an Amazon EC2 SSH key but do not specify a source security group when you create a managed node group, then port 22 on the worker nodes is opened to the internet (0.0.0.0/0). For more information, see Security Groups for Your VPC in the Amazon Virtual Private Cloud User Guide.

Trait Implementations

impl Clone for RemoteAccessConfig[src]

impl Debug for RemoteAccessConfig[src]

impl Default for RemoteAccessConfig[src]

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

impl PartialEq<RemoteAccessConfig> for RemoteAccessConfig[src]

impl Serialize for RemoteAccessConfig[src]

impl StructuralPartialEq for RemoteAccessConfig[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.