Interface CfnProjectProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.980Z")
@Stability(Stable)
public interface CfnProjectProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnProjectProfilePropsMixin.
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.*;
CfnProjectProfileMixinProps cfnProjectProfileMixinProps = CfnProjectProfileMixinProps.builder()
.description("description")
.domainIdentifier("domainIdentifier")
.domainUnitIdentifier("domainUnitIdentifier")
.environmentConfigurations(List.of(EnvironmentConfigurationProperty.builder()
.awsAccount(AwsAccountProperty.builder()
.awsAccountId("awsAccountId")
.build())
.awsRegion(RegionProperty.builder()
.regionName("regionName")
.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")
.environmentBlueprintId("environmentBlueprintId")
.environmentConfigurationId("environmentConfigurationId")
.name("name")
.build()))
.name("name")
.status("status")
.useDefaultConfigurations(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectProfileMixinPropsstatic final classAn implementation forCfnProjectProfileMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the project profile.default StringA domain ID of the project profile.default StringA domain unit ID of the project profile.default ObjectEnvironment configurations of a project profile.default StringgetName()The name of a project profile.default StringThe status of a project profile.default ObjectReturns union: eitherBooleanorIResolvableMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the project profile.- See Also:
-
getDomainIdentifier
A domain ID of the project profile.- See Also:
-
getDomainUnitIdentifier
A domain unit ID of the project profile.- See Also:
-
getEnvironmentConfigurations
Environment configurations of a project profile.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnProjectProfilePropsMixin.EnvironmentConfigurationProperty>- See Also:
-
getName
The name of a project profile.- See Also:
-
getStatus
The status of a project profile.- See Also:
-
getUseDefaultConfigurations
Returns union: eitherBooleanorIResolvable- See Also:
-
builder
-