@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.919Z") @Stability(value=Stable) public interface CfnModelPackageGroupProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelPackageGroupProps.Builder
A builder for
CfnModelPackageGroupProps |
static class |
CfnModelPackageGroupProps.Jsii$Proxy
An implementation for
CfnModelPackageGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelPackageGroupProps.Builder |
builder() |
default String |
getModelPackageGroupDescription()
The description for the model group.
|
String |
getModelPackageGroupName()
The name of the model group.
|
default Object |
getModelPackageGroupPolicy()
A resouce policy to control access to a model group.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getModelPackageGroupName()
@Stability(value=Stable) @Nullable default String getModelPackageGroupDescription()
@Stability(value=Stable) @Nullable default Object getModelPackageGroupPolicy()
For information about resoure policies, see Identity-based policies and resource-based policies in the AWS Identity and Access Management User Guide. .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnModelPackageGroupProps.Builder builder()
CfnModelPackageGroupProps.Builder of CfnModelPackageGroupPropsCopyright © 2022. All rights reserved.