Class: Aws::ResourceGroups::Types::CreateGroupInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configurationArray<Types::GroupConfigurationItem>

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 details about the syntax of service configurations, see Service configurations for Resource Groups.

A resource group can contain either a Configuration or a ResourceQuery, but not both.

Returns:



107
108
109
110
111
112
113
114
115
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 107

class CreateGroupInput < Struct.new(
  :name,
  :description,
  :resource_query,
  :tags,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the resource group. Descriptions can consist of letters, numbers, hyphens, underscores, periods, and spaces.

Returns:

  • (String)


107
108
109
110
111
112
113
114
115
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 107

class CreateGroupInput < Struct.new(
  :name,
  :description,
  :resource_query,
  :tags,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the group, which is the identifier of the group in other operations. You can't change the name of a resource group after you create it. A resource group name can consist of letters, numbers, hyphens, periods, and underscores. The name cannot start with AWS or aws; these are reserved. A resource group name must be unique within each Amazon Web Services Region in your Amazon Web Services account.

Returns:

  • (String)


107
108
109
110
111
112
113
114
115
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 107

class CreateGroupInput < Struct.new(
  :name,
  :description,
  :resource_query,
  :tags,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end

#resource_queryTypes::ResourceQuery

The resource query that determines which Amazon Web Services resources are members of this group. For more information about resource queries, see Create a tag-based group in Resource Groups.

A resource group can contain either a ResourceQuery or a Configuration, but not both.



107
108
109
110
111
112
113
114
115
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 107

class CreateGroupInput < Struct.new(
  :name,
  :description,
  :resource_query,
  :tags,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

The tags to add to the group. A tag is key-value pair string.

Returns:

  • (Hash<String,String>)


107
108
109
110
111
112
113
114
115
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 107

class CreateGroupInput < Struct.new(
  :name,
  :description,
  :resource_query,
  :tags,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end