interface ConfigurationItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResourceGroups.CfnGroup.ConfigurationItemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresourcegroups#CfnGroup_ConfigurationItemProperty |
Java | software.amazon.awscdk.services.resourcegroups.CfnGroup.ConfigurationItemProperty |
Python | aws_cdk.aws_resourcegroups.CfnGroup.ConfigurationItemProperty |
TypeScript | aws-cdk-lib » aws_resourcegroups » CfnGroup » ConfigurationItemProperty |
One of the items in the service configuration assigned to a resource group.
A service configuration can consist of one or more items. For details service configurations and how to construct them, see Service configurations for resource groups in the Resource Groups User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resourcegroups as resourcegroups } from 'aws-cdk-lib';
const configurationItemProperty: resourcegroups.CfnGroup.ConfigurationItemProperty = {
parameters: [{
name: 'name',
values: ['values'],
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters? | IResolvable | (IResolvable | Configuration)[] | A collection of parameters for this configuration item. |
| type? | string | Specifies the type of configuration item. |
parameters?
Type:
IResolvable | (IResolvable | Configuration)[]
(optional)
A collection of parameters for this configuration item.
For the list of parameters that you can use with each configuration item Type , see Supported resource types and parameters in the Resource Groups User Guide .
type?
Type:
string
(optional)
Specifies the type of configuration item.
Each item must have a unique value for type. For the list of the types that you can specify for a configuration item, see Supported resource types and parameters in the Resource Groups User Guide .

.NET
Go
Java
Python
TypeScript