Interface CfnModelPackageGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackageGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:14.545Z")
@Stability(Stable)
public interface CfnModelPackageGroupProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
Object modelPackageGroupPolicy;
CfnModelPackageGroupProps cfnModelPackageGroupProps = CfnModelPackageGroupProps.builder()
.modelPackageGroupName("modelPackageGroupName")
// the properties below are optional
.modelPackageGroupDescription("modelPackageGroupDescription")
.modelPackageGroupPolicy(modelPackageGroupPolicy)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackageGroupPropsstatic final classAn implementation forCfnModelPackageGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModelPackageGroupName
The name of the model group.- See Also:
-
getModelPackageGroupDescription
The description for the model group.- See Also:
-
getModelPackageGroupPolicy
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. .
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnModelPackageGroupProps.BuilderofCfnModelPackageGroupProps
-