Class: Aws::Evs::Types::LicenseInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Evs::Types::LicenseInfo
- Defined in:
- gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#solution_key ⇒ String
The VCF solution key.
-
#vsan_key ⇒ String
The VSAN license key.
Instance Attribute Details
#solution_key ⇒ 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.
887 888 889 890 891 892 |
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 887 class LicenseInfo < Struct.new( :solution_key, :vsan_key) SENSITIVE = [] include Aws::Structure end |
#vsan_key ⇒ String
The VSAN license key. This license unlocks vSAN features. The vSAN license key must provide at least 110 TiB of vSAN capacity.
887 888 889 890 891 892 |
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 887 class LicenseInfo < Struct.new( :solution_key, :vsan_key) SENSITIVE = [] include Aws::Structure end |