aws-cdk-lib.aws_resourcegroups.CfnGroup.ConfigurationItemProperty

interface ConfigurationItemProperty

LanguageType name
.NETAmazon.CDK.AWS.ResourceGroups.CfnGroup.ConfigurationItemProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsresourcegroups#CfnGroup_ConfigurationItemProperty
Javasoftware.amazon.awscdk.services.resourcegroups.CfnGroup.ConfigurationItemProperty
Pythonaws_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 AWS 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

NameTypeDescription
parameters?IResolvable | IResolvable | ConfigurationParameterProperty[]A collection of parameters for this configuration item.
type?stringSpecifies the type of configuration item.

parameters?

Type: IResolvable | IResolvable | ConfigurationParameterProperty[] (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 AWS 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 AWS Resource Groups User Guide .