Interface CfnGroup.ConfigurationItemProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnGroup.ConfigurationItemProperty.Jsii$Proxy
- Enclosing class:
- CfnGroup
@Stability(Stable)
public static interface CfnGroup.ConfigurationItemProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.resourcegroups.*;
 ConfigurationItemProperty configurationItemProperty = ConfigurationItemProperty.builder()
         .parameters(List.of(ConfigurationParameterProperty.builder()
                 .name("name")
                 .values(List.of("values"))
                 .build()))
         .type("type")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGroup.ConfigurationItemPropertystatic final classAn implementation forCfnGroup.ConfigurationItemProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getParametersA 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 .
- 
getTypeSpecifies 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 . 
- 
builder
 
-