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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGroup.ConfigurationParameterProperty
static final class
An implementation forCfnGroup.ConfigurationParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the group configuration parameter.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 .
- See Also:
-
getValues
The value or values to be used for the specified parameter.For the list of values you can use with each parameter, see Supported resource types and parameters .
- See Also:
-
builder
-