interface HubAccessConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModel.HubAccessConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModel_HubAccessConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModel.HubAccessConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnModel.HubAccessConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModel » HubAccessConfigProperty |
The configuration for a private hub model reference that points to a public SageMaker JumpStart model.
For more information about private hubs, see Private curated hubs for foundation model access control in JumpStart .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const hubAccessConfigProperty: sagemaker.CfnModel.HubAccessConfigProperty = {
hubContentArn: 'hubContentArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| hub | string | The ARN of your private model hub content. |
hubContentArn
Type:
string
The ARN of your private model hub content.
This should be a ModelReference resource type that points to a SageMaker JumpStart public hub model.

.NET
Go
Java
Python
TypeScript