Interface CfnProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:06.890Z")
@Stability(Stable)
public interface CfnProjectProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnProject.
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.*;
CfnProjectProps cfnProjectProps = CfnProjectProps.builder()
.domainIdentifier("domainIdentifier")
.name("name")
// the properties below are optional
.description("description")
.glossaryTerms(List.of("glossaryTerms"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectPropsstatic final classAn implementation forCfnProjectProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProjectProps.Builderbuilder()default StringThe description of a project.The identifier of a Amazon DataZone domain where the project exists.The glossary terms that can be used in this Amazon DataZone project.getName()The name of a project.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainIdentifier
The identifier of a Amazon DataZone domain where the project exists.- See Also:
-
getName
The name of a project.- See Also:
-
getDescription
The description of a project.- See Also:
-
getGlossaryTerms
The glossary terms that can be used in this Amazon DataZone project.- See Also:
-
builder
- Returns:
- a
CfnProjectProps.BuilderofCfnProjectProps
-