@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-27T20:28:49.143Z") @Stability(value=Stable) public interface ApplicationConfiguration extends software.amazon.jsii.JsiiSerializable
A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
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.stepfunctions.tasks.*;
ApplicationConfiguration applicationConfiguration_;
Classification classification;
ApplicationConfiguration applicationConfiguration = ApplicationConfiguration.builder()
.classification(classification)
// the properties below are optional
.nestedConfig(List.of(ApplicationConfiguration.builder()
.classification(classification)
// the properties below are optional
.nestedConfig(List.of(applicationConfiguration_))
.properties(Map.of(
"propertiesKey", "properties"))
.build()))
.properties(Map.of(
"propertiesKey", "properties"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ApplicationConfiguration.Builder
A builder for
ApplicationConfiguration |
static class |
ApplicationConfiguration.Jsii$Proxy
An implementation for
ApplicationConfiguration |
| Modifier and Type | Method and Description |
|---|---|
static ApplicationConfiguration.Builder |
builder() |
Classification |
getClassification()
The classification within a configuration.
|
default List<ApplicationConfiguration> |
getNestedConfig()
A list of additional configurations to apply within a configuration object.
|
default Map<String,String> |
getProperties()
A set of properties specified within a configuration classification.
|
@Stability(value=Stable) @NotNull Classification getClassification()
Length Constraints: Minimum length of 1. Maximum length of 1024.
@Stability(value=Stable) @Nullable default List<ApplicationConfiguration> getNestedConfig()
Array Members: Maximum number of 100 items.
Default: - No other configurations
@Stability(value=Stable) @Nullable default Map<String,String> getProperties()
Map Entries: Maximum number of 100 items.
Default: - No properties
@Stability(value=Stable) static ApplicationConfiguration.Builder builder()
ApplicationConfiguration.Builder of ApplicationConfigurationCopyright © 2022. All rights reserved.