interface LicenseInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EVS.CfnEnvironment.LicenseInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevs#CfnEnvironment_LicenseInfoProperty |
Java | software.amazon.awscdk.services.evs.CfnEnvironment.LicenseInfoProperty |
Python | aws_cdk.aws_evs.CfnEnvironment.LicenseInfoProperty |
TypeScript | aws-cdk-lib » aws_evs » CfnEnvironment » 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 { aws_evs as evs } from 'aws-cdk-lib';
const licenseInfoProperty: evs.CfnEnvironment.LicenseInfoProperty = {
solutionKey: 'solutionKey',
vsanKey: 'vsanKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| solution | string | The VCF solution key. |
| vsan | string | The VSAN license key. |
solutionKey
Type:
string
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
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