Interface CfnEnvironmentProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:10.900Z")
@Stability(Stable)
public interface CfnEnvironmentProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEnvironmentProfile.
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.*;
CfnEnvironmentProfileProps cfnEnvironmentProfileProps = CfnEnvironmentProfileProps.builder()
.awsAccountId("awsAccountId")
.awsAccountRegion("awsAccountRegion")
.domainIdentifier("domainIdentifier")
.environmentBlueprintIdentifier("environmentBlueprintIdentifier")
.name("name")
.projectIdentifier("projectIdentifier")
// the properties below are optional
.description("description")
.userParameters(List.of(EnvironmentParameterProperty.builder()
.name("name")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentProfilePropsstatic final classAn implementation forCfnEnvironmentProfileProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The identifier of an AWS account in which an environment profile exists.The AWS Region in which an environment profile exists.default StringThe description of the environment profile.The identifier of the Amazon DataZone domain in which the environment profile exists.The identifier of a blueprint with which an environment profile is created.getName()The name of the environment profile.The identifier of a project in which an environment profile exists.default ObjectThe user parameters of this Amazon DataZone environment profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsAccountId
The identifier of an AWS account in which an environment profile exists.- See Also:
-
getAwsAccountRegion
The AWS Region in which an environment profile exists.- See Also:
-
getDomainIdentifier
The identifier of the Amazon DataZone domain in which the environment profile exists.- See Also:
-
getEnvironmentBlueprintIdentifier
The identifier of a blueprint with which an environment profile is created.- See Also:
-
getName
The name of the environment profile.- See Also:
-
getProjectIdentifier
The identifier of a project in which an environment profile exists.- See Also:
-
getDescription
The description of the environment profile.- See Also:
-
getUserParameters
The user parameters of this Amazon DataZone environment profile.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEnvironmentProfile.EnvironmentParameterProperty>- See Also:
-
builder
- Returns:
- a
CfnEnvironmentProfileProps.BuilderofCfnEnvironmentProfileProps
-