package awsemrcontainers import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnVirtualCluster`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnVirtualClusterProps := &CfnVirtualClusterProps{ // ContainerProvider: &ContainerProviderProperty{ // Id: jsii.String("id"), // Info: &ContainerInfoProperty{ // EksInfo: &EksInfoProperty{ // Namespace: jsii.String("namespace"), // }, // }, // Type: jsii.String("type"), // }, // Name: jsii.String("name"), // // // the properties below are optional // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html // type CfnVirtualClusterProps struct { // 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 // ContainerProvider interface{} `field:"required" json:"containerProvider" yaml:"containerProvider"` // The name of the virtual cluster. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html#cfn-emrcontainers-virtualcluster-name // Name *string `field:"required" json:"name" yaml:"name"` // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html#cfn-emrcontainers-virtualcluster-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }