public static interface CfnGroup.ConfigurationItemProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnGroup.ConfigurationItemProperty.Builder
A builder for
CfnGroup.ConfigurationItemProperty |
static class |
CfnGroup.ConfigurationItemProperty.Jsii$Proxy
An implementation for
CfnGroup.ConfigurationItemProperty |
Modifier and Type | Method and Description |
---|---|
static CfnGroup.ConfigurationItemProperty.Builder |
builder() |
default java.lang.Object |
getParameters()
A collection of parameters for this configuration item.
|
default java.lang.String |
getType()
Specifies the type of configuration item.
|
default java.lang.Object getParameters()
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 .
default java.lang.String getType()
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 .
static CfnGroup.ConfigurationItemProperty.Builder builder()