Interface CfnProjectProfile.EnvironmentConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectProfile.EnvironmentConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnProjectProfile
@Stability(Stable)
public static interface CfnProjectProfile.EnvironmentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of an environment.
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.datazone.*; EnvironmentConfigurationProperty environmentConfigurationProperty = EnvironmentConfigurationProperty.builder() .awsRegion(RegionProperty.builder() .regionName("regionName") .build()) .environmentBlueprintId("environmentBlueprintId") .name("name") // the properties below are optional .awsAccount(AwsAccountProperty.builder() .awsAccountId("awsAccountId") .build()) .configurationParameters(EnvironmentConfigurationParametersDetailsProperty.builder() .parameterOverrides(List.of(EnvironmentConfigurationParameterProperty.builder() .isEditable(false) .name("name") .value("value") .build())) .resolvedParameters(List.of(EnvironmentConfigurationParameterProperty.builder() .isEditable(false) .name("name") .value("value") .build())) .ssmPath("ssmPath") .build()) .deploymentMode("deploymentMode") .deploymentOrder(123) .description("description") .id("id") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProjectProfile.EnvironmentConfigurationProperty
static final class
An implementation forCfnProjectProfile.EnvironmentConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The AWS account of the environment.The AWS Region of the environment.default Object
The configuration parameters of the environment.default String
The deployment mode of the environment.default Number
The deployment order of the environment.default String
The environment description.The environment blueprint ID.default String
getId()
The environment ID.getName()
The environment name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsRegion
The AWS Region of the environment.- See Also:
-
getEnvironmentBlueprintId
The environment blueprint ID.- See Also:
-
getName
The environment name.- See Also:
-
getAwsAccount
The AWS account of the environment.- See Also:
-
getConfigurationParameters
The configuration parameters of the environment.- See Also:
-
getDeploymentMode
The deployment mode of the environment.- See Also:
-
getDeploymentOrder
The deployment order of the environment.- See Also:
-
getDescription
The environment description.- See Also:
-
getId
The environment ID.- See Also:
-
builder
-