Documentation
¶
Index ¶
- type AppImageConfigReference
- type AppReference
- type ClusterReference
- type CodeRepositoryReference
- type DataQualityJobDefinitionReference
- type DeviceFleetReference
- type DeviceReference
- type DomainReference
- type EndpointConfigReference
- type EndpointReference
- type FeatureGroupReference
- type IAppImageConfigRef
- type IAppRef
- type IClusterRef
- type ICodeRepositoryRef
- type IDataQualityJobDefinitionRef
- type IDeviceFleetRef
- type IDeviceRef
- type IDomainRef
- type IEndpointConfigRef
- type IEndpointRef
- type IFeatureGroupRef
- type IImageRef
- type IImageVersionRef
- type IInferenceComponentRef
- type IInferenceExperimentRef
- type IMlflowTrackingServerRef
- type IModelBiasJobDefinitionRef
- type IModelCardRef
- type IModelExplainabilityJobDefinitionRef
- type IModelPackageGroupRef
- type IModelPackageRef
- type IModelQualityJobDefinitionRef
- type IModelRef
- type IMonitoringScheduleRef
- type INotebookInstanceLifecycleConfigRef
- type INotebookInstanceRef
- type IPartnerAppRef
- type IPipelineRef
- type IProcessingJobRef
- type IProjectRef
- type ISpaceRef
- type IStudioLifecycleConfigRef
- type IUserProfileRef
- type IWorkteamRef
- type ImageReference
- type ImageVersionReference
- type InferenceComponentReference
- type InferenceExperimentReference
- type MlflowTrackingServerReference
- type ModelBiasJobDefinitionReference
- type ModelCardReference
- type ModelExplainabilityJobDefinitionReference
- type ModelPackageGroupReference
- type ModelPackageReference
- type ModelQualityJobDefinitionReference
- type ModelReference
- type MonitoringScheduleReference
- type NotebookInstanceLifecycleConfigReference
- type NotebookInstanceReference
- type PartnerAppReference
- type PipelineReference
- type ProcessingJobReference
- type ProjectReference
- type SpaceReference
- type StudioLifecycleConfigReference
- type UserProfileReference
- type WorkteamReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppImageConfigReference ¶
type AppImageConfigReference struct {
// The ARN of the AppImageConfig resource.
AppImageConfigArn *string `field:"required" json:"appImageConfigArn" yaml:"appImageConfigArn"`
// The AppImageConfigName of the AppImageConfig resource.
AppImageConfigName *string `field:"required" json:"appImageConfigName" yaml:"appImageConfigName"`
}
A reference to a AppImageConfig resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
appImageConfigReference := &AppImageConfigReference{
AppImageConfigArn: jsii.String("appImageConfigArn"),
AppImageConfigName: jsii.String("appImageConfigName"),
}
type AppReference ¶
type AppReference struct {
// The ARN of the App resource.
AppArn *string `field:"required" json:"appArn" yaml:"appArn"`
// The AppName of the App resource.
AppName *string `field:"required" json:"appName" yaml:"appName"`
// The AppType of the App resource.
AppType *string `field:"required" json:"appType" yaml:"appType"`
// The DomainId of the App resource.
DomainId *string `field:"required" json:"domainId" yaml:"domainId"`
// The UserProfileName of the App resource.
UserProfileName *string `field:"required" json:"userProfileName" yaml:"userProfileName"`
}
A reference to a App resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
appReference := &AppReference{
AppArn: jsii.String("appArn"),
AppName: jsii.String("appName"),
AppType: jsii.String("appType"),
DomainId: jsii.String("domainId"),
UserProfileName: jsii.String("userProfileName"),
}
type ClusterReference ¶
type ClusterReference struct {
// The ClusterArn of the Cluster resource.
ClusterArn *string `field:"required" json:"clusterArn" yaml:"clusterArn"`
}
A reference to a Cluster resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
clusterReference := &ClusterReference{
ClusterArn: jsii.String("clusterArn"),
}
type CodeRepositoryReference ¶
type CodeRepositoryReference struct {
// The Id of the CodeRepository resource.
CodeRepositoryId *string `field:"required" json:"codeRepositoryId" yaml:"codeRepositoryId"`
}
A reference to a CodeRepository resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
codeRepositoryReference := &CodeRepositoryReference{
CodeRepositoryId: jsii.String("codeRepositoryId"),
}
type DataQualityJobDefinitionReference ¶
type DataQualityJobDefinitionReference struct {
// The JobDefinitionArn of the DataQualityJobDefinition resource.
JobDefinitionArn *string `field:"required" json:"jobDefinitionArn" yaml:"jobDefinitionArn"`
}
A reference to a DataQualityJobDefinition resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
dataQualityJobDefinitionReference := &DataQualityJobDefinitionReference{
JobDefinitionArn: jsii.String("jobDefinitionArn"),
}
type DeviceFleetReference ¶
type DeviceFleetReference struct {
// The DeviceFleetName of the DeviceFleet resource.
DeviceFleetName *string `field:"required" json:"deviceFleetName" yaml:"deviceFleetName"`
}
A reference to a DeviceFleet resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
deviceFleetReference := &DeviceFleetReference{
DeviceFleetName: jsii.String("deviceFleetName"),
}
type DeviceReference ¶
type DeviceReference struct {
// The Device/DeviceName of the Device resource.
DeviceName *string `field:"required" json:"deviceName" yaml:"deviceName"`
}
A reference to a Device resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
deviceReference := &DeviceReference{
DeviceName: jsii.String("deviceName"),
}
type DomainReference ¶
type DomainReference struct {
// The ARN of the Domain resource.
DomainArn *string `field:"required" json:"domainArn" yaml:"domainArn"`
// The DomainId of the Domain resource.
DomainId *string `field:"required" json:"domainId" yaml:"domainId"`
}
A reference to a Domain resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
domainReference := &DomainReference{
DomainArn: jsii.String("domainArn"),
DomainId: jsii.String("domainId"),
}
type EndpointConfigReference ¶
type EndpointConfigReference struct {
// The Id of the EndpointConfig resource.
EndpointConfigId *string `field:"required" json:"endpointConfigId" yaml:"endpointConfigId"`
}
A reference to a EndpointConfig resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
endpointConfigReference := &EndpointConfigReference{
EndpointConfigId: jsii.String("endpointConfigId"),
}
type EndpointReference ¶
type EndpointReference struct {
// The EndpointArn of the Endpoint resource.
EndpointArn *string `field:"required" json:"endpointArn" yaml:"endpointArn"`
}
A reference to a Endpoint resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
endpointReference := &EndpointReference{
EndpointArn: jsii.String("endpointArn"),
}
type FeatureGroupReference ¶
type FeatureGroupReference struct {
// The FeatureGroupName of the FeatureGroup resource.
FeatureGroupName *string `field:"required" json:"featureGroupName" yaml:"featureGroupName"`
}
A reference to a FeatureGroup resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
featureGroupReference := &FeatureGroupReference{
FeatureGroupName: jsii.String("featureGroupName"),
}
type IAppImageConfigRef ¶
type IAppImageConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AppImageConfig resource.
// Experimental.
AppImageConfigRef() *AppImageConfigReference
}
Indicates that this resource can be referenced as a AppImageConfig. Experimental.
type IAppRef ¶
type IAppRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a App resource.
// Experimental.
AppRef() *AppReference
}
Indicates that this resource can be referenced as a App. Experimental.
type IClusterRef ¶
type IClusterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Cluster resource.
// Experimental.
ClusterRef() *ClusterReference
}
Indicates that this resource can be referenced as a Cluster. Experimental.
type ICodeRepositoryRef ¶
type ICodeRepositoryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CodeRepository resource.
// Experimental.
CodeRepositoryRef() *CodeRepositoryReference
}
Indicates that this resource can be referenced as a CodeRepository. Experimental.
type IDataQualityJobDefinitionRef ¶
type IDataQualityJobDefinitionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DataQualityJobDefinition resource.
// Experimental.
DataQualityJobDefinitionRef() *DataQualityJobDefinitionReference
}
Indicates that this resource can be referenced as a DataQualityJobDefinition. Experimental.
type IDeviceFleetRef ¶
type IDeviceFleetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DeviceFleet resource.
// Experimental.
DeviceFleetRef() *DeviceFleetReference
}
Indicates that this resource can be referenced as a DeviceFleet. Experimental.
type IDeviceRef ¶
type IDeviceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Device resource.
// Experimental.
DeviceRef() *DeviceReference
}
Indicates that this resource can be referenced as a Device. Experimental.
type IDomainRef ¶
type IDomainRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Domain resource.
// Experimental.
DomainRef() *DomainReference
}
Indicates that this resource can be referenced as a Domain. Experimental.
type IEndpointConfigRef ¶
type IEndpointConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EndpointConfig resource.
// Experimental.
EndpointConfigRef() *EndpointConfigReference
}
Indicates that this resource can be referenced as a EndpointConfig. Experimental.
type IEndpointRef ¶
type IEndpointRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Endpoint resource.
// Experimental.
EndpointRef() *EndpointReference
}
Indicates that this resource can be referenced as a Endpoint. Experimental.
type IFeatureGroupRef ¶
type IFeatureGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a FeatureGroup resource.
// Experimental.
FeatureGroupRef() *FeatureGroupReference
}
Indicates that this resource can be referenced as a FeatureGroup. Experimental.
type IImageRef ¶
type IImageRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Image resource.
// Experimental.
ImageRef() *ImageReference
}
Indicates that this resource can be referenced as a Image. Experimental.
type IImageVersionRef ¶
type IImageVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ImageVersion resource.
// Experimental.
ImageVersionRef() *ImageVersionReference
}
Indicates that this resource can be referenced as a ImageVersion. Experimental.
type IInferenceComponentRef ¶
type IInferenceComponentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a InferenceComponent resource.
// Experimental.
InferenceComponentRef() *InferenceComponentReference
}
Indicates that this resource can be referenced as a InferenceComponent. Experimental.
type IInferenceExperimentRef ¶
type IInferenceExperimentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a InferenceExperiment resource.
// Experimental.
InferenceExperimentRef() *InferenceExperimentReference
}
Indicates that this resource can be referenced as a InferenceExperiment. Experimental.
type IMlflowTrackingServerRef ¶
type IMlflowTrackingServerRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MlflowTrackingServer resource.
// Experimental.
MlflowTrackingServerRef() *MlflowTrackingServerReference
}
Indicates that this resource can be referenced as a MlflowTrackingServer. Experimental.
type IModelBiasJobDefinitionRef ¶
type IModelBiasJobDefinitionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ModelBiasJobDefinition resource.
// Experimental.
ModelBiasJobDefinitionRef() *ModelBiasJobDefinitionReference
}
Indicates that this resource can be referenced as a ModelBiasJobDefinition. Experimental.
type IModelCardRef ¶
type IModelCardRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ModelCard resource.
// Experimental.
ModelCardRef() *ModelCardReference
}
Indicates that this resource can be referenced as a ModelCard. Experimental.
type IModelExplainabilityJobDefinitionRef ¶
type IModelExplainabilityJobDefinitionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ModelExplainabilityJobDefinition resource.
// Experimental.
ModelExplainabilityJobDefinitionRef() *ModelExplainabilityJobDefinitionReference
}
Indicates that this resource can be referenced as a ModelExplainabilityJobDefinition. Experimental.
type IModelPackageGroupRef ¶
type IModelPackageGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ModelPackageGroup resource.
// Experimental.
ModelPackageGroupRef() *ModelPackageGroupReference
}
Indicates that this resource can be referenced as a ModelPackageGroup. Experimental.
type IModelPackageRef ¶
type IModelPackageRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ModelPackage resource.
// Experimental.
ModelPackageRef() *ModelPackageReference
}
Indicates that this resource can be referenced as a ModelPackage. Experimental.
type IModelQualityJobDefinitionRef ¶
type IModelQualityJobDefinitionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ModelQualityJobDefinition resource.
// Experimental.
ModelQualityJobDefinitionRef() *ModelQualityJobDefinitionReference
}
Indicates that this resource can be referenced as a ModelQualityJobDefinition. Experimental.
type IModelRef ¶
type IModelRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Model resource.
// Experimental.
ModelRef() *ModelReference
}
Indicates that this resource can be referenced as a Model. Experimental.
type IMonitoringScheduleRef ¶
type IMonitoringScheduleRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MonitoringSchedule resource.
// Experimental.
MonitoringScheduleRef() *MonitoringScheduleReference
}
Indicates that this resource can be referenced as a MonitoringSchedule. Experimental.
type INotebookInstanceLifecycleConfigRef ¶
type INotebookInstanceLifecycleConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a NotebookInstanceLifecycleConfig resource.
// Experimental.
NotebookInstanceLifecycleConfigRef() *NotebookInstanceLifecycleConfigReference
}
Indicates that this resource can be referenced as a NotebookInstanceLifecycleConfig. Experimental.
type INotebookInstanceRef ¶
type INotebookInstanceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a NotebookInstance resource.
// Experimental.
NotebookInstanceRef() *NotebookInstanceReference
}
Indicates that this resource can be referenced as a NotebookInstance. Experimental.
type IPartnerAppRef ¶
type IPartnerAppRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PartnerApp resource.
// Experimental.
PartnerAppRef() *PartnerAppReference
}
Indicates that this resource can be referenced as a PartnerApp. Experimental.
type IPipelineRef ¶
type IPipelineRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Pipeline resource.
// Experimental.
PipelineRef() *PipelineReference
}
Indicates that this resource can be referenced as a Pipeline. Experimental.
type IProcessingJobRef ¶
type IProcessingJobRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ProcessingJob resource.
// Experimental.
ProcessingJobRef() *ProcessingJobReference
}
Indicates that this resource can be referenced as a ProcessingJob. Experimental.
type IProjectRef ¶
type IProjectRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Project resource.
// Experimental.
ProjectRef() *ProjectReference
}
Indicates that this resource can be referenced as a Project. Experimental.
type ISpaceRef ¶
type ISpaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Space resource.
// Experimental.
SpaceRef() *SpaceReference
}
Indicates that this resource can be referenced as a Space. Experimental.
type IStudioLifecycleConfigRef ¶
type IStudioLifecycleConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StudioLifecycleConfig resource.
// Experimental.
StudioLifecycleConfigRef() *StudioLifecycleConfigReference
}
Indicates that this resource can be referenced as a StudioLifecycleConfig. Experimental.
type IUserProfileRef ¶
type IUserProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a UserProfile resource.
// Experimental.
UserProfileRef() *UserProfileReference
}
Indicates that this resource can be referenced as a UserProfile. Experimental.
type IWorkteamRef ¶
type IWorkteamRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Workteam resource.
// Experimental.
WorkteamRef() *WorkteamReference
}
Indicates that this resource can be referenced as a Workteam. Experimental.
type ImageReference ¶
type ImageReference struct {
// The ImageArn of the Image resource.
ImageArn *string `field:"required" json:"imageArn" yaml:"imageArn"`
}
A reference to a Image resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
imageReference := &ImageReference{
ImageArn: jsii.String("imageArn"),
}
type ImageVersionReference ¶
type ImageVersionReference struct {
// The ImageVersionArn of the ImageVersion resource.
ImageVersionArn *string `field:"required" json:"imageVersionArn" yaml:"imageVersionArn"`
}
A reference to a ImageVersion resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
imageVersionReference := &ImageVersionReference{
ImageVersionArn: jsii.String("imageVersionArn"),
}
type InferenceComponentReference ¶
type InferenceComponentReference struct {
// The InferenceComponentArn of the InferenceComponent resource.
InferenceComponentArn *string `field:"required" json:"inferenceComponentArn" yaml:"inferenceComponentArn"`
}
A reference to a InferenceComponent resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
inferenceComponentReference := &InferenceComponentReference{
InferenceComponentArn: jsii.String("inferenceComponentArn"),
}
type InferenceExperimentReference ¶
type InferenceExperimentReference struct {
// The ARN of the InferenceExperiment resource.
InferenceExperimentArn *string `field:"required" json:"inferenceExperimentArn" yaml:"inferenceExperimentArn"`
// The Name of the InferenceExperiment resource.
InferenceExperimentName *string `field:"required" json:"inferenceExperimentName" yaml:"inferenceExperimentName"`
}
A reference to a InferenceExperiment resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
inferenceExperimentReference := &InferenceExperimentReference{
InferenceExperimentArn: jsii.String("inferenceExperimentArn"),
InferenceExperimentName: jsii.String("inferenceExperimentName"),
}
type MlflowTrackingServerReference ¶
type MlflowTrackingServerReference struct {
// The TrackingServerName of the MlflowTrackingServer resource.
TrackingServerName *string `field:"required" json:"trackingServerName" yaml:"trackingServerName"`
}
A reference to a MlflowTrackingServer resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
mlflowTrackingServerReference := &MlflowTrackingServerReference{
TrackingServerName: jsii.String("trackingServerName"),
}
type ModelBiasJobDefinitionReference ¶
type ModelBiasJobDefinitionReference struct {
// The JobDefinitionArn of the ModelBiasJobDefinition resource.
JobDefinitionArn *string `field:"required" json:"jobDefinitionArn" yaml:"jobDefinitionArn"`
}
A reference to a ModelBiasJobDefinition resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelBiasJobDefinitionReference := &ModelBiasJobDefinitionReference{
JobDefinitionArn: jsii.String("jobDefinitionArn"),
}
type ModelCardReference ¶
type ModelCardReference struct {
// The ARN of the ModelCard resource.
ModelCardArn *string `field:"required" json:"modelCardArn" yaml:"modelCardArn"`
// The ModelCardName of the ModelCard resource.
ModelCardName *string `field:"required" json:"modelCardName" yaml:"modelCardName"`
}
A reference to a ModelCard resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelCardReference := &ModelCardReference{
ModelCardArn: jsii.String("modelCardArn"),
ModelCardName: jsii.String("modelCardName"),
}
type ModelExplainabilityJobDefinitionReference ¶
type ModelExplainabilityJobDefinitionReference struct {
// The JobDefinitionArn of the ModelExplainabilityJobDefinition resource.
JobDefinitionArn *string `field:"required" json:"jobDefinitionArn" yaml:"jobDefinitionArn"`
}
A reference to a ModelExplainabilityJobDefinition resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelExplainabilityJobDefinitionReference := &ModelExplainabilityJobDefinitionReference{
JobDefinitionArn: jsii.String("jobDefinitionArn"),
}
type ModelPackageGroupReference ¶
type ModelPackageGroupReference struct {
// The ModelPackageGroupArn of the ModelPackageGroup resource.
ModelPackageGroupArn *string `field:"required" json:"modelPackageGroupArn" yaml:"modelPackageGroupArn"`
}
A reference to a ModelPackageGroup resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelPackageGroupReference := &ModelPackageGroupReference{
ModelPackageGroupArn: jsii.String("modelPackageGroupArn"),
}
type ModelPackageReference ¶
type ModelPackageReference struct {
// The ModelPackageArn of the ModelPackage resource.
ModelPackageArn *string `field:"required" json:"modelPackageArn" yaml:"modelPackageArn"`
}
A reference to a ModelPackage resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelPackageReference := &ModelPackageReference{
ModelPackageArn: jsii.String("modelPackageArn"),
}
type ModelQualityJobDefinitionReference ¶
type ModelQualityJobDefinitionReference struct {
// The JobDefinitionArn of the ModelQualityJobDefinition resource.
JobDefinitionArn *string `field:"required" json:"jobDefinitionArn" yaml:"jobDefinitionArn"`
}
A reference to a ModelQualityJobDefinition resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelQualityJobDefinitionReference := &ModelQualityJobDefinitionReference{
JobDefinitionArn: jsii.String("jobDefinitionArn"),
}
type ModelReference ¶
type ModelReference struct {
// The Id of the Model resource.
ModelId *string `field:"required" json:"modelId" yaml:"modelId"`
}
A reference to a Model resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
modelReference := &ModelReference{
ModelId: jsii.String("modelId"),
}
type MonitoringScheduleReference ¶
type MonitoringScheduleReference struct {
// The MonitoringScheduleArn of the MonitoringSchedule resource.
MonitoringScheduleArn *string `field:"required" json:"monitoringScheduleArn" yaml:"monitoringScheduleArn"`
}
A reference to a MonitoringSchedule resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
monitoringScheduleReference := &MonitoringScheduleReference{
MonitoringScheduleArn: jsii.String("monitoringScheduleArn"),
}
type NotebookInstanceLifecycleConfigReference ¶
type NotebookInstanceLifecycleConfigReference struct {
// The Id of the NotebookInstanceLifecycleConfig resource.
NotebookInstanceLifecycleConfigId *string `field:"required" json:"notebookInstanceLifecycleConfigId" yaml:"notebookInstanceLifecycleConfigId"`
}
A reference to a NotebookInstanceLifecycleConfig resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
notebookInstanceLifecycleConfigReference := &NotebookInstanceLifecycleConfigReference{
NotebookInstanceLifecycleConfigId: jsii.String("notebookInstanceLifecycleConfigId"),
}
type NotebookInstanceReference ¶
type NotebookInstanceReference struct {
// The Id of the NotebookInstance resource.
NotebookInstanceId *string `field:"required" json:"notebookInstanceId" yaml:"notebookInstanceId"`
}
A reference to a NotebookInstance resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
notebookInstanceReference := &NotebookInstanceReference{
NotebookInstanceId: jsii.String("notebookInstanceId"),
}
type PartnerAppReference ¶
type PartnerAppReference struct {
// The Arn of the PartnerApp resource.
PartnerAppArn *string `field:"required" json:"partnerAppArn" yaml:"partnerAppArn"`
}
A reference to a PartnerApp resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
partnerAppReference := &PartnerAppReference{
PartnerAppArn: jsii.String("partnerAppArn"),
}
type PipelineReference ¶
type PipelineReference struct {
// The PipelineName of the Pipeline resource.
PipelineName *string `field:"required" json:"pipelineName" yaml:"pipelineName"`
}
A reference to a Pipeline resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
pipelineReference := &PipelineReference{
PipelineName: jsii.String("pipelineName"),
}
type ProcessingJobReference ¶
type ProcessingJobReference struct {
// The ProcessingJobArn of the ProcessingJob resource.
ProcessingJobArn *string `field:"required" json:"processingJobArn" yaml:"processingJobArn"`
}
A reference to a ProcessingJob resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
processingJobReference := &ProcessingJobReference{
ProcessingJobArn: jsii.String("processingJobArn"),
}
type ProjectReference ¶
type ProjectReference struct {
// The ProjectArn of the Project resource.
ProjectArn *string `field:"required" json:"projectArn" yaml:"projectArn"`
}
A reference to a Project resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
projectReference := &ProjectReference{
ProjectArn: jsii.String("projectArn"),
}
type SpaceReference ¶
type SpaceReference struct {
// The DomainId of the Space resource.
DomainId *string `field:"required" json:"domainId" yaml:"domainId"`
// The ARN of the Space resource.
SpaceArn *string `field:"required" json:"spaceArn" yaml:"spaceArn"`
// The SpaceName of the Space resource.
SpaceName *string `field:"required" json:"spaceName" yaml:"spaceName"`
}
A reference to a Space resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
spaceReference := &SpaceReference{
DomainId: jsii.String("domainId"),
SpaceArn: jsii.String("spaceArn"),
SpaceName: jsii.String("spaceName"),
}
type StudioLifecycleConfigReference ¶
type StudioLifecycleConfigReference struct {
// The ARN of the StudioLifecycleConfig resource.
StudioLifecycleConfigArn *string `field:"required" json:"studioLifecycleConfigArn" yaml:"studioLifecycleConfigArn"`
// The StudioLifecycleConfigName of the StudioLifecycleConfig resource.
StudioLifecycleConfigName *string `field:"required" json:"studioLifecycleConfigName" yaml:"studioLifecycleConfigName"`
}
A reference to a StudioLifecycleConfig resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
studioLifecycleConfigReference := &StudioLifecycleConfigReference{
StudioLifecycleConfigArn: jsii.String("studioLifecycleConfigArn"),
StudioLifecycleConfigName: jsii.String("studioLifecycleConfigName"),
}
type UserProfileReference ¶
type UserProfileReference struct {
// The DomainId of the UserProfile resource.
DomainId *string `field:"required" json:"domainId" yaml:"domainId"`
// The ARN of the UserProfile resource.
UserProfileArn *string `field:"required" json:"userProfileArn" yaml:"userProfileArn"`
// The UserProfileName of the UserProfile resource.
UserProfileName *string `field:"required" json:"userProfileName" yaml:"userProfileName"`
}
A reference to a UserProfile resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
userProfileReference := &UserProfileReference{
DomainId: jsii.String("domainId"),
UserProfileArn: jsii.String("userProfileArn"),
UserProfileName: jsii.String("userProfileName"),
}
type WorkteamReference ¶
type WorkteamReference struct {
// The Id of the Workteam resource.
WorkteamId *string `field:"required" json:"workteamId" yaml:"workteamId"`
}
A reference to a Workteam resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
workteamReference := &WorkteamReference{
WorkteamId: jsii.String("workteamId"),
}
Source Files
¶
- AppImageConfigReference.go
- AppReference.go
- ClusterReference.go
- CodeRepositoryReference.go
- DataQualityJobDefinitionReference.go
- DeviceFleetReference.go
- DeviceReference.go
- DomainReference.go
- EndpointConfigReference.go
- EndpointReference.go
- FeatureGroupReference.go
- IAppImageConfigRef.go
- IAppRef.go
- IClusterRef.go
- ICodeRepositoryRef.go
- IDataQualityJobDefinitionRef.go
- IDeviceFleetRef.go
- IDeviceRef.go
- IDomainRef.go
- IEndpointConfigRef.go
- IEndpointRef.go
- IFeatureGroupRef.go
- IImageRef.go
- IImageVersionRef.go
- IInferenceComponentRef.go
- IInferenceExperimentRef.go
- IMlflowTrackingServerRef.go
- IModelBiasJobDefinitionRef.go
- IModelCardRef.go
- IModelExplainabilityJobDefinitionRef.go
- IModelPackageGroupRef.go
- IModelPackageRef.go
- IModelQualityJobDefinitionRef.go
- IModelRef.go
- IMonitoringScheduleRef.go
- INotebookInstanceLifecycleConfigRef.go
- INotebookInstanceRef.go
- IPartnerAppRef.go
- IPipelineRef.go
- IProcessingJobRef.go
- IProjectRef.go
- ISpaceRef.go
- IStudioLifecycleConfigRef.go
- IUserProfileRef.go
- IWorkteamRef.go
- ImageReference.go
- ImageVersionReference.go
- InferenceComponentReference.go
- InferenceExperimentReference.go
- MlflowTrackingServerReference.go
- ModelBiasJobDefinitionReference.go
- ModelCardReference.go
- ModelExplainabilityJobDefinitionReference.go
- ModelPackageGroupReference.go
- ModelPackageReference.go
- ModelQualityJobDefinitionReference.go
- ModelReference.go
- MonitoringScheduleReference.go
- NotebookInstanceLifecycleConfigReference.go
- NotebookInstanceReference.go
- PartnerAppReference.go
- PipelineReference.go
- ProcessingJobReference.go
- ProjectReference.go
- SpaceReference.go
- StudioLifecycleConfigReference.go
- UserProfileReference.go
- WorkteamReference.go
- main.go