You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::LicenseManager::Types::UpdateLicenseConfigurationRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateLicenseConfigurationRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  license_configuration_arn: "String", # required
  license_configuration_status: "AVAILABLE", # accepts AVAILABLE, DISABLED
  license_rules: ["String"],
  license_count: 1,
  license_count_hard_limit: false,
  name: "String",
  description: "String",
  product_information_list: [
    {
      resource_type: "String", # required
      product_information_filter_list: [ # required
        {
          product_information_filter_name: "String", # required
          product_information_filter_value: ["String"], # required
          product_information_filter_comparator: "String", # required
        },
      ],
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

New description of the license configuration.

Returns:

  • (String)

    New description of the license configuration.

#license_configuration_arnString

Amazon Resource Name (ARN) of the license configuration.

Returns:

  • (String)

    Amazon Resource Name (ARN) of the license configuration.

#license_configuration_statusString

New status of the license configuration.

Possible values:

  • AVAILABLE
  • DISABLED

Returns:

  • (String)

    New status of the license configuration.

#license_countInteger

New number of licenses managed by the license configuration.

Returns:

  • (Integer)

    New number of licenses managed by the license configuration.

#license_count_hard_limitBoolean

New hard limit of the number of available licenses.

Returns:

  • (Boolean)

    New hard limit of the number of available licenses.

#license_rulesArray<String>

New license rule. The only rule that you can add after you create a license configuration is licenseAffinityToHost.

Returns:

  • (Array<String>)

    New license rule.

#nameString

New name of the license configuration.

Returns:

  • (String)

    New name of the license configuration.

#product_information_listArray<Types::ProductInformation>

New product information.

Returns: