interface ConfigurationItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ResourceGroups.Mixins.CfnGroupPropsMixin.ConfigurationItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsresourcegroups/mixins#CfnGroupPropsMixin_ConfigurationItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.resourcegroups.mixins.CfnGroupPropsMixin.ConfigurationItemProperty |
Python | aws_cdk.mixins_preview.aws_resourcegroups.mixins.CfnGroupPropsMixin.ConfigurationItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_resourcegroups » mixins » 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 { mixins as resourcegroups_mixins } from '@aws-cdk/mixins-preview/aws-resourcegroups';
const configurationItemProperty: resourcegroups_mixins.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