interface HubAccessConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPropsMixin.HubAccessConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPropsMixin_HubAccessConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPropsMixin.HubAccessConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPropsMixin.HubAccessConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const hubAccessConfigProperty: sagemaker_mixins.CfnModelPropsMixin.HubAccessConfigProperty = {
hubContentArn: 'hubContentArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| hub | string | The ARN of your private model hub content. |
hubContentArn?
Type:
string
(optional)
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