@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.954Z") @Stability(value=Stable) public interface CfnProjectProps extends software.amazon.jsii.JsiiSerializable
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")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProjectProps.Builder
A builder for
CfnProjectProps |
static class |
CfnProjectProps.Jsii$Proxy
An implementation for
CfnProjectProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnProjectProps.Builder |
builder() |
default 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.
|
default List<CfnTag> |
getTags()
A list of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getProjectName()
@Stability(value=Stable) @NotNull Object getServiceCatalogProvisioningDetails()
For information, see What is AWS Service Catalog .
@Stability(value=Stable) @Nullable default String getProjectDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Resource Tag and Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide .
@Stability(value=Stable) static CfnProjectProps.Builder builder()
CfnProjectProps.Builder of CfnProjectPropsCopyright © 2022. All rights reserved.