Class: Aws::ResourceGroups::Types::PutGroupConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::PutGroupConfigurationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resourcegroups/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration ⇒ Array<Types::GroupConfigurationItem>
The new configuration to associate with the specified group.
-
#group ⇒ String
The name or Amazon resource name (ARN) of the resource group with the configuration that you want to update.
Instance Attribute Details
#configuration ⇒ Array<Types::GroupConfigurationItem>
The new configuration to associate with the specified group. A configuration associates the resource group with an Amazon Web Services service and specifies how the service can interact with the resources in the group. A configuration is an array of GroupConfigurationItem elements.
For information about the syntax of a service configuration, see [Service configurations for Resource Groups].
<note markdown=“1”> A resource group can contain either a ‘Configuration` or a `ResourceQuery`, but not both.
</note>
[1]: docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html
1299 1300 1301 1302 1303 1304 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 1299 class PutGroupConfigurationInput < Struct.new( :group, :configuration) SENSITIVE = [] include Aws::Structure end |
#group ⇒ String
The name or Amazon resource name (ARN) of the resource group with the configuration that you want to update.
1299 1300 1301 1302 1303 1304 |
# File 'lib/aws-sdk-resourcegroups/types.rb', line 1299 class PutGroupConfigurationInput < Struct.new( :group, :configuration) SENSITIVE = [] include Aws::Structure end |