Class CfnPlan.EksClusterProperty
The AWS EKS cluster execution block configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ARCRegionSwitch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPlan.EksClusterProperty : CfnPlan.IEksClusterProperty
Syntax (vb)
Public Class CfnPlan.EksClusterProperty Implements CfnPlan.IEksClusterProperty
Remarks
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.ARCRegionSwitch;
var eksClusterProperty = new EksClusterProperty {
ClusterArn = "clusterArn",
// the properties below are optional
CrossAccountRole = "crossAccountRole",
ExternalId = "externalId"
};
Synopsis
Constructors
| EksClusterProperty() | The AWS EKS cluster execution block configuration. |
Properties
| ClusterArn | The Amazon Resource Name (ARN) of an AWS EKS cluster. |
| CrossAccountRole | The cross account role for the configuration. |
| ExternalId | The external ID (secret key) for the configuration. |
Constructors
EksClusterProperty()
The AWS EKS cluster execution block configuration.
public EksClusterProperty()
Remarks
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.ARCRegionSwitch;
var eksClusterProperty = new EksClusterProperty {
ClusterArn = "clusterArn",
// the properties below are optional
CrossAccountRole = "crossAccountRole",
ExternalId = "externalId"
};
Properties
ClusterArn
The Amazon Resource Name (ARN) of an AWS EKS cluster.
public string ClusterArn { get; set; }
Property Value
Remarks
CrossAccountRole
The cross account role for the configuration.
public string? CrossAccountRole { get; set; }
Property Value
Remarks
ExternalId
The external ID (secret key) for the configuration.
public string? ExternalId { get; set; }