Interface EnvironmentAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EnvironmentAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:44.729Z")
@Stability(Stable)
public interface EnvironmentAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes of an existing AWS AppConfig environment to import it.
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.appconfig.*;
Application application;
Monitor monitor;
EnvironmentAttributes environmentAttributes = EnvironmentAttributes.builder()
.application(application)
.environmentId("environmentId")
// the properties below are optional
.description("description")
.monitors(List.of(monitor))
.name("name")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEnvironmentAttributesstatic final classAn implementation forEnvironmentAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplication
The application associated with the environment. -
getEnvironmentId
The ID of the environment. -
getDescription
The description of the environment.Default: - None.
-
getMonitors
The monitors for the environment.Default: - None.
-
getName
The name of the environment.Default: - None.
-
builder
- Returns:
- a
EnvironmentAttributes.BuilderofEnvironmentAttributes
-