Interface CfnModelPackageGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackageGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:35.410Z") @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();
 
  • Method Details

    • getModelPackageGroupName

      @Stability(Stable) @NotNull String getModelPackageGroupName()
      The name of the model group.
    • getModelPackageGroupDescription

      @Stability(Stable) @Nullable default String getModelPackageGroupDescription()
      The description for the model group.
    • getModelPackageGroupPolicy

      @Stability(Stable) @Nullable default Object 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. .

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

      @Stability(Stable) static CfnModelPackageGroupProps.Builder builder()
      Returns:
      a CfnModelPackageGroupProps.Builder of CfnModelPackageGroupProps