Interface CfnProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.527Z")
@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.sagemaker.*;
Object serviceCatalogProvisioningDetails;
CfnProjectProps cfnProjectProps = CfnProjectProps.builder()
.projectName("projectName")
.serviceCatalogProvisioningDetails(serviceCatalogProvisioningDetails)
// the properties below are optional
.projectDescription("projectDescription")
.serviceCatalogProvisionedProductDetails(ServiceCatalogProvisionedProductDetailsProperty.builder()
.provisionedProductId("provisionedProductId")
.provisionedProductStatusMessage("provisionedProductStatusMessage")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
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 the project.The name of the project.default ObjectAWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails.The product ID and provisioning artifact ID to provision a service catalog.getTags()A list of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProjectName
The name of the project. -
getServiceCatalogProvisioningDetails
The product ID and provisioning artifact ID to provision a service catalog.For information, see What is AWS Service Catalog .
-
getProjectDescription
The description of the project. -
getServiceCatalogProvisionedProductDetails
AWS::SageMaker::Project.ServiceCatalogProvisionedProductDetails. -
getTags
A list of key-value pairs to apply to this resource.For more information, see Resource Tag and Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide .
-
builder
- Returns:
- a
CfnProjectProps.BuilderofCfnProjectProps
-