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();
 

See Also: