Interface CfnEnvironmentProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentProfileProps.Jsii$Proxy
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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEnvironmentProfileProps
static final class
An 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 String
The 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 Object
The 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.- See Also:
-
builder
- Returns:
- a
CfnEnvironmentProfileProps.Builder
ofCfnEnvironmentProfileProps
-