Show / Hide Table of Contents

Class CfnNodegroupPropsMixin.RemoteAccessProperty

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

Inheritance
object
CfnNodegroupPropsMixin.RemoteAccessProperty
Implements
CfnNodegroupPropsMixin.IRemoteAccessProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.EKS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnNodegroupPropsMixin.RemoteAccessProperty : CfnNodegroupPropsMixin.IRemoteAccessProperty
Syntax (vb)
Public Class CfnNodegroupPropsMixin.RemoteAccessProperty Implements CfnNodegroupPropsMixin.IRemoteAccessProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.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.CfnPropertyMixins.AWS.EKS;

             var remoteAccessProperty = new RemoteAccessProperty {
                 Ec2SshKey = "ec2SshKey",
                 SourceSecurityGroups = new [] { "sourceSecurityGroups" }
             };

Synopsis

Constructors

RemoteAccessProperty()

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

Properties

Ec2SshKey

The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in the managed node group.

SourceSecurityGroups

The security group IDs that are allowed SSH access (port 22) to the nodes.

Constructors

RemoteAccessProperty()

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

public RemoteAccessProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.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.CfnPropertyMixins.AWS.EKS;

             var remoteAccessProperty = new RemoteAccessProperty {
                 Ec2SshKey = "ec2SshKey",
                 SourceSecurityGroups = new [] { "sourceSecurityGroups" }
             };

Properties

Ec2SshKey

The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in the managed node group.

public string? Ec2SshKey { get; set; }
Property Value

string

Remarks

For more information, see Amazon EC2 key pairs and Linux instances in the Amazon Elastic Compute Cloud User Guide for Linux Instances . For Windows, an Amazon EC2 SSH key is used to obtain the RDP password. For more information, see Amazon EC2 key pairs and Windows instances in the Amazon Elastic Compute Cloud User Guide for Windows Instances .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-ec2sshkey

SourceSecurityGroups

The security group IDs that are allowed SSH access (port 22) to the nodes.

public string[]? SourceSecurityGroups { get; set; }
Property Value

string[]

Remarks

For Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don't specify a source security group when you create a managed node group, then the port on the 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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-remoteaccess.html#cfn-eks-nodegroup-remoteaccess-sourcesecuritygroups

Implements

CfnNodegroupPropsMixin.IRemoteAccessProperty
Back to top Generated by DocFX