Interface CfnEnvironmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.949Z")
@Stability(Stable)
public interface CfnEnvironmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEnvironmentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.datazone.*;
CfnEnvironmentMixinProps cfnEnvironmentMixinProps = CfnEnvironmentMixinProps.builder()
.deploymentOrder(123)
.description("description")
.domainIdentifier("domainIdentifier")
.environmentAccountIdentifier("environmentAccountIdentifier")
.environmentAccountRegion("environmentAccountRegion")
.environmentBlueprintIdentifier("environmentBlueprintIdentifier")
.environmentConfigurationId("environmentConfigurationId")
.environmentProfileIdentifier("environmentProfileIdentifier")
.environmentRoleArn("environmentRoleArn")
.glossaryTerms(List.of("glossaryTerms"))
.name("name")
.projectIdentifier("projectIdentifier")
.userParameters(List.of(EnvironmentParameterProperty.builder()
.name("name")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentMixinPropsstatic final classAn implementation forCfnEnvironmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe deployment order for the environment.default StringThe description of the environment.default StringThe identifier of the Amazon DataZone domain in which the environment is created.default StringThe identifier of the AWS account in which an environment exists.default StringThe AWS Region in which an environment exists.default StringThe identifier of the environment blueprint.default StringThe identifier of the environment configuration.default StringThe identifier of the environment profile that is used to create this Amazon DataZone environment.default StringThe ARN of the environment role.The glossary terms that can be used in this Amazon DataZone environment.default StringgetName()The name of the Amazon DataZone environment.default StringThe identifier of the Amazon DataZone project in which this environment is created.default ObjectThe user parameters of this Amazon DataZone environment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeploymentOrder
The deployment order for the environment.- See Also:
-
getDescription
The description of the environment.- See Also:
-
getDomainIdentifier
The identifier of the Amazon DataZone domain in which the environment is created.- See Also:
-
getEnvironmentAccountIdentifier
The identifier of the AWS account in which an environment exists.- See Also:
-
getEnvironmentAccountRegion
The AWS Region in which an environment exists.- See Also:
-
getEnvironmentBlueprintIdentifier
The identifier of the environment blueprint.- See Also:
-
getEnvironmentConfigurationId
The identifier of the environment configuration.- See Also:
-
getEnvironmentProfileIdentifier
The identifier of the environment profile that is used to create this Amazon DataZone environment.- See Also:
-
getEnvironmentRoleArn
The ARN of the environment role.- See Also:
-
getGlossaryTerms
The glossary terms that can be used in this Amazon DataZone environment.- See Also:
-
getName
The name of the Amazon DataZone environment.- See Also:
-
getProjectIdentifier
The identifier of the Amazon DataZone project in which this environment is created.- See Also:
-
getUserParameters
The user parameters of this Amazon DataZone environment.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEnvironmentPropsMixin.EnvironmentParameterProperty>- See Also:
-
builder
- Returns:
- a
CfnEnvironmentMixinProps.BuilderofCfnEnvironmentMixinProps
-