interface CfnModelPackageGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackageGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackageGroupProps |
Java | software.amazon.awscdk.services.sagemaker.CfnModelPackageGroupProps |
Python | aws_cdk.aws_sagemaker.CfnModelPackageGroupProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModelPackageGroupProps |
Properties for defining a CfnModelPackageGroup
.
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';
declare const modelPackageGroupPolicy: any;
const cfnModelPackageGroupProps: sagemaker.CfnModelPackageGroupProps = {
modelPackageGroupName: 'modelPackageGroupName',
// the properties below are optional
modelPackageGroupDescription: 'modelPackageGroupDescription',
modelPackageGroupPolicy: modelPackageGroupPolicy,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
model | string | The name of the model group. |
model | string | The description for the model group. |
model | any | A resouce policy to control access to a model group. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
modelPackageGroupName
Type:
string
The name of the model group.
modelPackageGroupDescription?
Type:
string
(optional)
The description for the model group.
modelPackageGroupPolicy?
Type:
any
(optional)
A resouce policy to control access to a model group.
For information about resoure policies, see Identity-based policies and resource-based policies in the AWS Identity and Access Management User Guide. .
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .