published on Monday, Jun 22, 2026 by Pulumi
published on Monday, Jun 22, 2026 by Pulumi
Manages a SageMaker AI Hub Content Reference resource. A hub content reference copies a model from the SageMaker JumpStart public hub into a private hub so that it is accessible to users in that hub.
Example Usage
Basic usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.sagemaker.Hub("example", {
hubName: "example",
hubDescription: "example",
});
const exampleHubContentReference = new aws.sagemaker.HubContentReference("example", {
hubName: example.hubName,
hubContentName: "example-llama",
sagemakerPublicHubContentArn: "arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct",
});
import pulumi
import pulumi_aws as aws
example = aws.sagemaker.Hub("example",
hub_name="example",
hub_description="example")
example_hub_content_reference = aws.sagemaker.HubContentReference("example",
hub_name=example.hub_name,
hub_content_name="example-llama",
sagemaker_public_hub_content_arn="arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/sagemaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := sagemaker.NewHub(ctx, "example", &sagemaker.HubArgs{
HubName: pulumi.String("example"),
HubDescription: pulumi.String("example"),
})
if err != nil {
return err
}
_, err = sagemaker.NewHubContentReference(ctx, "example", &sagemaker.HubContentReferenceArgs{
HubName: example.HubName,
HubContentName: pulumi.String("example-llama"),
SagemakerPublicHubContentArn: pulumi.String("arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Sagemaker.Hub("example", new()
{
HubName = "example",
HubDescription = "example",
});
var exampleHubContentReference = new Aws.Sagemaker.HubContentReference("example", new()
{
HubName = example.HubName,
HubContentName = "example-llama",
SagemakerPublicHubContentArn = "arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.Hub;
import com.pulumi.aws.sagemaker.HubArgs;
import com.pulumi.aws.sagemaker.HubContentReference;
import com.pulumi.aws.sagemaker.HubContentReferenceArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Hub("example", HubArgs.builder()
.hubName("example")
.hubDescription("example")
.build());
var exampleHubContentReference = new HubContentReference("exampleHubContentReference", HubContentReferenceArgs.builder()
.hubName(example.hubName())
.hubContentName("example-llama")
.sagemakerPublicHubContentArn("arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct")
.build());
}
}
resources:
example:
type: aws:sagemaker:Hub
properties:
hubName: example
hubDescription: example
exampleHubContentReference:
type: aws:sagemaker:HubContentReference
name: example
properties:
hubName: ${example.hubName}
hubContentName: example-llama
sagemakerPublicHubContentArn: arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_sagemaker_hub" "example" {
hub_name = "example"
hub_description = "example"
}
resource "aws_sagemaker_hubcontentreference" "example" {
hub_name = aws_sagemaker_hub.example.hub_name
hub_content_name = "example-llama"
sagemaker_public_hub_content_arn = "arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct"
}
With minimum version
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.sagemaker.HubContentReference("example", {
hubName: exampleAwsSagemakerHub.hubName,
hubContentName: "example-llama",
sagemakerPublicHubContentArn: "arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct",
minVersion: "1.0.0",
});
import pulumi
import pulumi_aws as aws
example = aws.sagemaker.HubContentReference("example",
hub_name=example_aws_sagemaker_hub["hubName"],
hub_content_name="example-llama",
sagemaker_public_hub_content_arn="arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct",
min_version="1.0.0")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/sagemaker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sagemaker.NewHubContentReference(ctx, "example", &sagemaker.HubContentReferenceArgs{
HubName: pulumi.Any(exampleAwsSagemakerHub.HubName),
HubContentName: pulumi.String("example-llama"),
SagemakerPublicHubContentArn: pulumi.String("arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct"),
MinVersion: pulumi.String("1.0.0"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Sagemaker.HubContentReference("example", new()
{
HubName = exampleAwsSagemakerHub.HubName,
HubContentName = "example-llama",
SagemakerPublicHubContentArn = "arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct",
MinVersion = "1.0.0",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.HubContentReference;
import com.pulumi.aws.sagemaker.HubContentReferenceArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new HubContentReference("example", HubContentReferenceArgs.builder()
.hubName(exampleAwsSagemakerHub.hubName())
.hubContentName("example-llama")
.sagemakerPublicHubContentArn("arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct")
.minVersion("1.0.0")
.build());
}
}
resources:
example:
type: aws:sagemaker:HubContentReference
properties:
hubName: ${exampleAwsSagemakerHub.hubName}
hubContentName: example-llama
sagemakerPublicHubContentArn: arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct
minVersion: 1.0.0
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_sagemaker_hubcontentreference" "example" {
hub_name = exampleAwsSagemakerHub.hubName
hub_content_name = "example-llama"
sagemaker_public_hub_content_arn = "arn:aws:sagemaker:us-east-1:aws:hub-content/SageMakerPublicHub/Model/meta-textgeneration-llama-3-1-8b-instruct"
min_version = "1.0.0"
}
Create HubContentReference Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HubContentReference(name: string, args: HubContentReferenceArgs, opts?: CustomResourceOptions);@overload
def HubContentReference(resource_name: str,
args: HubContentReferenceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HubContentReference(resource_name: str,
opts: Optional[ResourceOptions] = None,
hub_content_name: Optional[str] = None,
hub_name: Optional[str] = None,
sagemaker_public_hub_content_arn: Optional[str] = None,
min_version: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[HubContentReferenceTimeoutsArgs] = None)func NewHubContentReference(ctx *Context, name string, args HubContentReferenceArgs, opts ...ResourceOption) (*HubContentReference, error)public HubContentReference(string name, HubContentReferenceArgs args, CustomResourceOptions? opts = null)
public HubContentReference(String name, HubContentReferenceArgs args)
public HubContentReference(String name, HubContentReferenceArgs args, CustomResourceOptions options)
type: aws:sagemaker:HubContentReference
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_sagemaker_hubcontentreference" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args HubContentReferenceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args HubContentReferenceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HubContentReferenceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HubContentReferenceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HubContentReferenceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var hubContentReferenceResource = new Aws.Sagemaker.HubContentReference("hubContentReferenceResource", new()
{
HubContentName = "string",
HubName = "string",
SagemakerPublicHubContentArn = "string",
MinVersion = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Sagemaker.Inputs.HubContentReferenceTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := sagemaker.NewHubContentReference(ctx, "hubContentReferenceResource", &sagemaker.HubContentReferenceArgs{
HubContentName: pulumi.String("string"),
HubName: pulumi.String("string"),
SagemakerPublicHubContentArn: pulumi.String("string"),
MinVersion: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &sagemaker.HubContentReferenceTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aws_sagemaker_hubcontentreference" "hubContentReferenceResource" {
hub_content_name = "string"
hub_name = "string"
sagemaker_public_hub_content_arn = "string"
min_version = "string"
region = "string"
tags = {
"string" = "string"
}
timeouts = {
create = "string"
delete = "string"
update = "string"
}
}
var hubContentReferenceResource = new HubContentReference("hubContentReferenceResource", HubContentReferenceArgs.builder()
.hubContentName("string")
.hubName("string")
.sagemakerPublicHubContentArn("string")
.minVersion("string")
.region("string")
.tags(Map.of("string", "string"))
.timeouts(HubContentReferenceTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
hub_content_reference_resource = aws.sagemaker.HubContentReference("hubContentReferenceResource",
hub_content_name="string",
hub_name="string",
sagemaker_public_hub_content_arn="string",
min_version="string",
region="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const hubContentReferenceResource = new aws.sagemaker.HubContentReference("hubContentReferenceResource", {
hubContentName: "string",
hubName: "string",
sagemakerPublicHubContentArn: "string",
minVersion: "string",
region: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:sagemaker:HubContentReference
properties:
hubContentName: string
hubName: string
minVersion: string
region: string
sagemakerPublicHubContentArn: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
HubContentReference Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The HubContentReference resource accepts the following input properties:
- Hub
Content stringName - Name of the hub content reference.
- Hub
Name string - Name of the private SageMaker Hub to add the content reference to.
- Sagemaker
Public stringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- Min
Version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Hub
Content Reference Timeouts
- Hub
Content stringName - Name of the hub content reference.
- Hub
Name string - Name of the private SageMaker Hub to add the content reference to.
- Sagemaker
Public stringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- Min
Version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Hub
Content Reference Timeouts Args
- hub_
content_ stringname - Name of the hub content reference.
- hub_
name string - Name of the private SageMaker Hub to add the content reference to.
- sagemaker_
public_ stringhub_ content_ arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- min_
version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts object
- hub
Content StringName - Name of the hub content reference.
- hub
Name String - Name of the private SageMaker Hub to add the content reference to.
- sagemaker
Public StringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- min
Version String - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Hub
Content Reference Timeouts
- hub
Content stringName - Name of the hub content reference.
- hub
Name string - Name of the private SageMaker Hub to add the content reference to.
- sagemaker
Public stringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- min
Version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Hub
Content Reference Timeouts
- hub_
content_ strname - Name of the hub content reference.
- hub_
name str - Name of the private SageMaker Hub to add the content reference to.
- sagemaker_
public_ strhub_ content_ arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- min_
version str - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Hub
Content Reference Timeouts Args
- hub
Content StringName - Name of the hub content reference.
- hub
Name String - Name of the private SageMaker Hub to add the content reference to.
- sagemaker
Public StringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- min
Version String - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the HubContentReference resource produces the following output properties:
- Hub
Arn string - ARN of the private SageMaker Hub that contains the content reference.
- Hub
Content stringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- Hub
Content stringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - Hub
Content stringVersion - Version of the hub content reference.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- Hub
Arn string - ARN of the private SageMaker Hub that contains the content reference.
- Hub
Content stringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- Hub
Content stringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - Hub
Content stringVersion - Version of the hub content reference.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- hub_
arn string - ARN of the private SageMaker Hub that contains the content reference.
- hub_
content_ stringarn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub_
content_ stringstatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub_
content_ stringversion - Version of the hub content reference.
- id string
- The provider-assigned unique ID for this managed resource.
- map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- hub
Arn String - ARN of the private SageMaker Hub that contains the content reference.
- hub
Content StringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub
Content StringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub
Content StringVersion - Version of the hub content reference.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- hub
Arn string - ARN of the private SageMaker Hub that contains the content reference.
- hub
Content stringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub
Content stringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub
Content stringVersion - Version of the hub content reference.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- hub_
arn str - ARN of the private SageMaker Hub that contains the content reference.
- hub_
content_ strarn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub_
content_ strstatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub_
content_ strversion - Version of the hub content reference.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- hub
Arn String - ARN of the private SageMaker Hub that contains the content reference.
- hub
Content StringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub
Content StringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub
Content StringVersion - Version of the hub content reference.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
Look up Existing HubContentReference Resource
Get an existing HubContentReference resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HubContentReferenceState, opts?: CustomResourceOptions): HubContentReference@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
hub_arn: Optional[str] = None,
hub_content_arn: Optional[str] = None,
hub_content_name: Optional[str] = None,
hub_content_status: Optional[str] = None,
hub_content_version: Optional[str] = None,
hub_name: Optional[str] = None,
min_version: Optional[str] = None,
region: Optional[str] = None,
sagemaker_public_hub_content_arn: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[HubContentReferenceTimeoutsArgs] = None) -> HubContentReferencefunc GetHubContentReference(ctx *Context, name string, id IDInput, state *HubContentReferenceState, opts ...ResourceOption) (*HubContentReference, error)public static HubContentReference Get(string name, Input<string> id, HubContentReferenceState? state, CustomResourceOptions? opts = null)public static HubContentReference get(String name, Output<String> id, HubContentReferenceState state, CustomResourceOptions options)resources: _: type: aws:sagemaker:HubContentReference get: id: ${id}import {
to = aws_sagemaker_hubcontentreference.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Hub
Arn string - ARN of the private SageMaker Hub that contains the content reference.
- Hub
Content stringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- Hub
Content stringName - Name of the hub content reference.
- Hub
Content stringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - Hub
Content stringVersion - Version of the hub content reference.
- Hub
Name string - Name of the private SageMaker Hub to add the content reference to.
- Min
Version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Sagemaker
Public stringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Hub
Content Reference Timeouts
- Hub
Arn string - ARN of the private SageMaker Hub that contains the content reference.
- Hub
Content stringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- Hub
Content stringName - Name of the hub content reference.
- Hub
Content stringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - Hub
Content stringVersion - Version of the hub content reference.
- Hub
Name string - Name of the private SageMaker Hub to add the content reference to.
- Min
Version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Sagemaker
Public stringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Hub
Content Reference Timeouts Args
- hub_
arn string - ARN of the private SageMaker Hub that contains the content reference.
- hub_
content_ stringarn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub_
content_ stringname - Name of the hub content reference.
- hub_
content_ stringstatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub_
content_ stringversion - Version of the hub content reference.
- hub_
name string - Name of the private SageMaker Hub to add the content reference to.
- min_
version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sagemaker_
public_ stringhub_ content_ arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts object
- hub
Arn String - ARN of the private SageMaker Hub that contains the content reference.
- hub
Content StringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub
Content StringName - Name of the hub content reference.
- hub
Content StringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub
Content StringVersion - Version of the hub content reference.
- hub
Name String - Name of the private SageMaker Hub to add the content reference to.
- min
Version String - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sagemaker
Public StringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Hub
Content Reference Timeouts
- hub
Arn string - ARN of the private SageMaker Hub that contains the content reference.
- hub
Content stringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub
Content stringName - Name of the hub content reference.
- hub
Content stringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub
Content stringVersion - Version of the hub content reference.
- hub
Name string - Name of the private SageMaker Hub to add the content reference to.
- min
Version string - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sagemaker
Public stringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Hub
Content Reference Timeouts
- hub_
arn str - ARN of the private SageMaker Hub that contains the content reference.
- hub_
content_ strarn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub_
content_ strname - Name of the hub content reference.
- hub_
content_ strstatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub_
content_ strversion - Version of the hub content reference.
- hub_
name str - Name of the private SageMaker Hub to add the content reference to.
- min_
version str - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sagemaker_
public_ strhub_ content_ arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Hub
Content Reference Timeouts Args
- hub
Arn String - ARN of the private SageMaker Hub that contains the content reference.
- hub
Content StringArn - ARN of the hub content reference (without version suffix). The minVersion is stripped off from the end of this ARN to make it usable to list tags.
- hub
Content StringName - Name of the hub content reference.
- hub
Content StringStatus - Status of the hub content reference. Valid values include
Available,Importing,Deleting,ImportFailed,DeleteFailed. - hub
Content StringVersion - Version of the hub content reference.
- hub
Name String - Name of the private SageMaker Hub to add the content reference to.
- min
Version String - Minimum version of the hub content to reference. Use
"1.0.0"to support all versions. Changing this value to an empty string forces replacement of the resource. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sagemaker
Public StringHub Content Arn - ARN of the public SageMaker JumpStart hub content to reference. The ARN must not include a version suffix.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts Property Map
Supporting Types
HubContentReferenceTimeouts, HubContentReferenceTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Identity Schema
Required
hubContentName- (String) Name of the hub content reference.hubName- (String) Name of the private SageMaker Hub.
Optional
accountId- (String) AWS account where this resource is managed.region- (String) Region where this resource is managed.
Using pulumi import, import SageMaker AI Hub Content References using hub_name,hub_content_name. For example:
$ pulumi import aws:sagemaker/hubContentReference:HubContentReference example my-hub,my-content-reference
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Monday, Jun 22, 2026 by Pulumi