Class: Aws::Evs::Types::AccountSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::Evs::Types::AccountSetting
- Defined in:
- gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb
Overview
A regional account-level EVS setting, represented as a name and value pair.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the EVS setting.
-
#value ⇒ String
The value of the EVS setting.
Instance Attribute Details
#name ⇒ String
The name of the EVS setting. Valid values are:
vcfPortedCoreCount(type: numeric string) - The total number of VCF license cores ported to Amazon EVS for the account in that Region. The maximum value is 1,000,000 cores. This setting value is shared with Broadcom for record-keeping.
^
33 34 35 36 37 38 |
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 33 class AccountSetting < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the EVS setting.
33 34 35 36 37 38 |
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 33 class AccountSetting < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |