Show / Hide Table of Contents

Class CfnVirtualClusterMixinProps

Properties for CfnVirtualClusterPropsMixin.

Inheritance
object
CfnVirtualClusterMixinProps
Implements
ICfnVirtualClusterMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EMRContainers.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualClusterMixinProps : ICfnVirtualClusterMixinProps
Syntax (vb)
Public Class CfnVirtualClusterMixinProps Implements ICfnVirtualClusterMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.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.Mixins.Preview.AWS.EMRContainers.Mixins;

             var cfnVirtualClusterMixinProps = new CfnVirtualClusterMixinProps {
                 ContainerProvider = new ContainerProviderProperty {
                     Id = "id",
                     Info = new ContainerInfoProperty {
                         EksInfo = new EksInfoProperty {
                             Namespace = "namespace"
                         }
                     },
                     Type = "type"
                 },
                 Name = "name",
                 SecurityConfigurationId = "securityConfigurationId",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnVirtualClusterMixinProps()

Properties for CfnVirtualClusterPropsMixin.

Properties

ContainerProvider

The container provider of the virtual cluster.

Name

The name of the virtual cluster.

SecurityConfigurationId

The ID of the security configuration.

Tags

An array of key-value pairs to apply to this resource.

Constructors

CfnVirtualClusterMixinProps()

Properties for CfnVirtualClusterPropsMixin.

public CfnVirtualClusterMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.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.Mixins.Preview.AWS.EMRContainers.Mixins;

             var cfnVirtualClusterMixinProps = new CfnVirtualClusterMixinProps {
                 ContainerProvider = new ContainerProviderProperty {
                     Id = "id",
                     Info = new ContainerInfoProperty {
                         EksInfo = new EksInfoProperty {
                             Namespace = "namespace"
                         }
                     },
                     Type = "type"
                 },
                 Name = "name",
                 SecurityConfigurationId = "securityConfigurationId",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ContainerProvider

The container provider of the virtual cluster.

public object? ContainerProvider { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html#cfn-emrcontainers-virtualcluster-containerprovider

Type union: either IResolvable or CfnVirtualClusterPropsMixin.IContainerProviderProperty

Name

The name of the virtual cluster.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html#cfn-emrcontainers-virtualcluster-name

SecurityConfigurationId

The ID of the security configuration.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html#cfn-emrcontainers-virtualcluster-securityconfigurationid

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html#cfn-emrcontainers-virtualcluster-tags

Implements

ICfnVirtualClusterMixinProps
Back to top Generated by DocFX