Class: Aws::ResourceGroups::Types::GroupConfigurationParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::GroupConfigurationParameter
- 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
-
#name ⇒ String
The name of the group configuration parameter.
-
#values ⇒ Array<String>
The value or values to be used for the specified parameter.
Instance Attribute Details
#name ⇒ String
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
652 653 654 655 656 657 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 652 class GroupConfigurationParameter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<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
652 653 654 655 656 657 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 652 class GroupConfigurationParameter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |