Interface CfnGroup.ConfigurationParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGroup.ConfigurationParameterProperty.Jsii$Proxy
Enclosing class:
CfnGroup

@Stability(Stable) public static interface CfnGroup.ConfigurationParameterProperty extends software.amazon.jsii.JsiiSerializable
One parameter for a group configuration item.

For details about 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.*;
 ConfigurationParameterProperty configurationParameterProperty = ConfigurationParameterProperty.builder()
         .name("name")
         .values(List.of("values"))
         .build();