aws-cdk-lib.aws_sagemaker.CfnModelPackageGroupProps

interface CfnModelPackageGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackageGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackageGroupProps
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackageGroupProps
Pythonaws_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

NameTypeDescription
modelPackageGroupNamestringThe name of the model group.
modelPackageGroupDescription?stringThe description for the model group.
modelPackageGroupPolicy?anyA resouce policy to control access to a model group.
tags?CfnTag[]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: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .