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-12-27T17:02:09.838Z")
@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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProjectProps
static final class
An implementation forCfnProjectProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProjectProps.Builder
builder()
default String
The description of the project.The name of the project.default Object
Details of a provisioned service catalog product.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.- See Also:
-
getServiceCatalogProvisioningDetails
The product ID and provisioning artifact ID to provision a service catalog.For information, see What is AWS Service Catalog .
- See Also:
-
getProjectDescription
The description of the project.- See Also:
-
getServiceCatalogProvisionedProductDetails
Details of a provisioned service catalog product.For information about service catalog, see What is AWS Service Catalog .
- See Also:
-
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 .
- See Also:
-
builder
- Returns:
- a
CfnProjectProps.Builder
ofCfnProjectProps
-