Interface CfnProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:46.720Z")
@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")
// the properties below are optional
.projectDescription("projectDescription")
.serviceCatalogProvisionedProductDetails(ServiceCatalogProvisionedProductDetailsProperty.builder()
.provisionedProductId("provisionedProductId")
.provisionedProductStatusMessage("provisionedProductStatusMessage")
.build())
.serviceCatalogProvisioningDetails(serviceCatalogProvisioningDetails)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.templateProviderDetails(List.of(TemplateProviderDetailProperty.builder()
.cfnTemplateProviderDetail(CfnTemplateProviderDetailProperty.builder()
.templateName("templateName")
.templateUrl("templateUrl")
// the properties below are optional
.parameters(List.of(CfnStackParameterProperty.builder()
.key("key")
.value("value")
.build()))
.roleArn("roleArn")
.build())
.build()))
.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 the project.The name of the project.default ObjectDetails of a provisioned service catalog product.default ObjectThe product ID and provisioning artifact ID to provision a service catalog.getTags()A list of key-value pairs to apply to this resource.default ObjectAn array of template providers associated with the project.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProjectName
The name of the project.- 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 .
Returns union: either
IResolvableorCfnProject.ServiceCatalogProvisionedProductDetailsProperty- 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:
-
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:
-
getTemplateProviderDetails
An array of template providers associated with the project.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnProject.TemplateProviderDetailProperty>- See Also:
-
builder
- Returns:
- a
CfnProjectProps.BuilderofCfnProjectProps
-