interface CfnModelPackageGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackageGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackageGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackageGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackageGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackageGroupMixinProps |
Properties for CfnModelPackageGroupPropsMixin.
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';
declare const modelPackageGroupPolicy: any;
const cfnModelPackageGroupMixinProps: sagemaker_mixins.CfnModelPackageGroupMixinProps = {
modelPackageGroupDescription: 'modelPackageGroupDescription',
modelPackageGroupName: 'modelPackageGroupName',
modelPackageGroupPolicy: modelPackageGroupPolicy,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| model | string | The description for the model group. |
| model | string | The name of 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. |
modelPackageGroupDescription?
Type:
string
(optional)
The description for the model group.
modelPackageGroupName?
Type:
string
(optional)
The name of 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 .

.NET
Go
Java
Python
TypeScript