@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.953Z") @Stability(value=Stable) public class CfnProject extends CfnResource implements IInspectable
Creates a machine learning (ML) project that can contain one or more templates that set up an ML pipeline from training to deploying an approved model.
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;
CfnProject cfnProject = CfnProject.Builder.create(this, "MyCfnProject")
.projectName("projectName")
.serviceCatalogProvisioningDetails(serviceCatalogProvisioningDetails)
// the properties below are optional
.projectDescription("projectDescription")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnProject.Builder
A fluent builder for
CfnProject. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnProject(software.constructs.Construct scope,
String id,
CfnProjectProps props)
Create a new `AWS::SageMaker::Project`.
|
protected |
CfnProject(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnProject(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrCreationTime()
The time that the project was created.
|
String |
getAttrProjectArn()
The Amazon Resource Name (ARN) of the project.
|
String |
getAttrProjectId()
The ID of the project.
|
String |
getAttrProjectStatus()
The status of the project.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getProjectDescription()
The description of the project.
|
String |
getProjectName()
The name of the project.
|
Object |
getServiceCatalogProvisioningDetails()
The product ID and provisioning artifact ID to provision a service catalog.
|
TagManager |
getTags()
A list of key-value pairs to apply to this resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setProjectDescription(String value)
The description of the project.
|
void |
setProjectName(String value)
The name of the project.
|
void |
setServiceCatalogProvisioningDetails(Object value)
The product ID and provisioning artifact ID to provision a service catalog.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnProject(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnProject(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnProject(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnProjectProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrCreationTime()
@Stability(value=Stable) @NotNull public String getAttrProjectArn()
@Stability(value=Stable) @NotNull public String getAttrProjectId()
This ID is prepended to all entities associated with this project.
@Stability(value=Stable) @NotNull public String getAttrProjectStatus()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
For more information, see Resource Tag and Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide .
@Stability(value=Stable) @NotNull public String getProjectName()
@Stability(value=Stable)
public void setProjectName(@NotNull
String value)
@Stability(value=Stable) @NotNull public Object getServiceCatalogProvisioningDetails()
For information, see What is AWS Service Catalog .
@Stability(value=Stable)
public void setServiceCatalogProvisioningDetails(@NotNull
Object value)
For information, see What is AWS Service Catalog .
@Stability(value=Stable) @Nullable public String getProjectDescription()
@Stability(value=Stable)
public void setProjectDescription(@Nullable
String value)
Copyright © 2022. All rights reserved.