interface LicenseInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EVS.Mixins.CfnEnvironmentPropsMixin.LicenseInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevs/mixins#CfnEnvironmentPropsMixin_LicenseInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.evs.mixins.CfnEnvironmentPropsMixin.LicenseInfoProperty |
Python | aws_cdk.mixins_preview.aws_evs.mixins.CfnEnvironmentPropsMixin.LicenseInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evs » mixins » CfnEnvironmentPropsMixin » LicenseInfoProperty |
The license information that Amazon EVS requires to create an environment.
Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as evs_mixins } from '@aws-cdk/mixins-preview/aws-evs';
const licenseInfoProperty: evs_mixins.CfnEnvironmentPropsMixin.LicenseInfoProperty = {
solutionKey: 'solutionKey',
vsanKey: 'vsanKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| solution | string | The VCF solution key. |
| vsan | string | The VSAN license key. |
solutionKey?
Type:
string
(optional)
The VCF solution key.
This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server. The VCF solution key must cover a minimum of 256 cores.
vsanKey?
Type:
string
(optional)
The VSAN license key.
This license unlocks vSAN features. The vSAN license key must provide at least 110 TiB of vSAN capacity.

.NET
Go
Java
Python
TypeScript