Interface CfnEnvironmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:10.901Z")
@Stability(Stable)
public interface CfnEnvironmentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEnvironment.
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.*;
CfnEnvironmentProps cfnEnvironmentProps = CfnEnvironmentProps.builder()
.domainIdentifier("domainIdentifier")
.name("name")
.projectIdentifier("projectIdentifier")
// the properties below are optional
.description("description")
.environmentAccountIdentifier("environmentAccountIdentifier")
.environmentAccountRegion("environmentAccountRegion")
.environmentProfileIdentifier("environmentProfileIdentifier")
.environmentRoleArn("environmentRoleArn")
.glossaryTerms(List.of("glossaryTerms"))
.userParameters(List.of(EnvironmentParameterProperty.builder()
.name("name")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentPropsstatic final classAn implementation forCfnEnvironmentProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEnvironmentProps.Builderbuilder()default StringThe description of the environment.The 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 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.getName()The name of the Amazon DataZone environment.The 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
-
getDomainIdentifier
The identifier of the Amazon DataZone domain in which the environment is created.- 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:
-
getDescription
The description of the environment.- 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:
-
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:
-
getUserParameters
The user parameters of this Amazon DataZone environment.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEnvironment.EnvironmentParameterProperty>- See Also:
-
builder
- Returns:
- a
CfnEnvironmentProps.BuilderofCfnEnvironmentProps
-