Manages status of Service Catalog in SageMaker. Service Catalog is used to create SageMaker projects.
Usage:
resource "aws_sagemaker_servicecatalog_portfolio_status" "example" {
status = "Enabled"
}
This resource supports the following arguments:
status
- (Required) Whether Service Catalog is enabled or disabled in SageMaker. Valid values are Enabled
and Disabled
.This resource exports the following attributes in addition to the arguments above:
id
- The AWS Region the Servicecatalog portfolio status resides in.In Terraform v1.5.0 and later, use an import
block to import models using the id
. For example:
import {
to = aws_sagemaker_servicecatalog_portfolio_status.example
id = "us-east-1"
}
Using terraform import
, import models using the id
. For example:
% terraform import aws_sagemaker_servicecatalog_portfolio_status.example us-east-1