CfnVirtualClusterMixinProps

class aws_cdk.mixins_preview.aws_emrcontainers.mixins.CfnVirtualClusterMixinProps(*, container_provider=None, name=None, security_configuration_id=None, tags=None)

Bases: object

Properties for CfnVirtualClusterPropsMixin.

Parameters:
  • container_provider (Union[IResolvable, ContainerProviderProperty, Dict[str, Any], None]) – The container provider of the virtual cluster.

  • name (Optional[str]) – The name of the virtual cluster.

  • security_configuration_id (Optional[str]) – The ID of the security configuration.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_emrcontainers import mixins as emrcontainers_mixins

cfn_virtual_cluster_mixin_props = emrcontainers_mixins.CfnVirtualClusterMixinProps(
    container_provider=emrcontainers_mixins.CfnVirtualClusterPropsMixin.ContainerProviderProperty(
        id="id",
        info=emrcontainers_mixins.CfnVirtualClusterPropsMixin.ContainerInfoProperty(
            eks_info=emrcontainers_mixins.CfnVirtualClusterPropsMixin.EksInfoProperty(
                namespace="namespace"
            )
        ),
        type="type"
    ),
    name="name",
    security_configuration_id="securityConfigurationId",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

container_provider

The container provider of the virtual cluster.

See:

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

name

The name of the virtual cluster.

See:

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

security_configuration_id

The ID of the security configuration.

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.

For more information, see Tag .

See:

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