Class: Aws::Evs::Types::AccountSetting

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

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.

^

Returns:

  • (String)


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

#valueString

The value of the EVS setting.

Returns:

  • (String)


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