interface ConfigurationItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResourceGroups.CfnGroupPropsMixin.ConfigurationItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresourcegroups#CfnGroupPropsMixin_ConfigurationItemProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resourcegroups.CfnGroupPropsMixin.ConfigurationItemProperty |
Python | aws_cdk.cfn_property_mixins.aws_resourcegroups.CfnGroupPropsMixin.ConfigurationItemProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resourcegroups » CfnGroupPropsMixin » 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/cfn-property-mixins';
const configurationItemProperty: resourcegroups.CfnGroupPropsMixin.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