Class: Aws::ResourceGroups::Types::GroupConfigurationParameter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-resourcegroups/types.rb

Overview

A parameter for a group configuration item. For details about group service configuration syntax, see [Service configurations for resource groups].

[1]: docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the group configuration parameter. For the list of parameters that you can use with each configuration item type, see [Supported resource types and parameters].

[1]: docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html#about-slg-types

Returns:

  • (String)


507
508
509
510
511
512
# File 'lib/aws-sdk-resourcegroups/types.rb', line 507

class GroupConfigurationParameter < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The value or values to be used for the specified parameter. For the list of values you can use with each parameter, see [Supported resource types and parameters].

[1]: docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html#about-slg-types

Returns:

  • (Array<String>)


507
508
509
510
511
512
# File 'lib/aws-sdk-resourcegroups/types.rb', line 507

class GroupConfigurationParameter < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end