Documentation
¶
Overview ¶
Package sagemaker is a client for AWS Sagemaker.
Index ¶
- type Client
- type NotebookInstance
- type NotebookInstances
- type SDKClient
- func (sagemaker SDKClient) DeleteNotebookInstance(name string) error
- func (sagemaker SDKClient) DescribeNotebookInstance(name string) (NotebookInstance, error)
- func (sagemaker SDKClient) ListNotebookInstances() (NotebookInstances, error)
- func (sagemaker SDKClient) StartNotebookInstance(name string) error
- func (sagemaker SDKClient) StopNotebookInstance(name string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { ListNotebookInstances() (NotebookInstances, error) DescribeNotebookInstance(string) (NotebookInstance, error) StartNotebookInstance(string) error StopNotebookInstance(string) error DeleteNotebookInstance(string) error }
Client represnts a method for accessing Sagemaker.
type NotebookInstance ¶
type NotebookInstance struct { AcceleratorTypes []string AdditionalCodeRepositories []string CreationTime time.Time DefaultCodeRepository string DirectInternetAccess string FailureReason string InstanceType string KmsKeyId string LastModifiedTime time.Time NetworkInterfaceId string NotebookInstanceArn string NotebookInstanceLifecycleConfigName string NotebookInstanceName string NotebookInstanceStatus string RoleArn string RootAccess string SecurityGroups []string SubnetId string Url string VolumeSizeInGB int64 }
Notebook represents a Sagemaker notebook instance.
type NotebookInstances ¶
type NotebookInstances []NotebookInstance
Notebooks is a collection of Sagemaker notebook instances.
type SDKClient ¶
type SDKClient struct {
// contains filtered or unexported fields
}
SDKClient implements access to Sagemaker via the AWS SDK.
func (SDKClient) DeleteNotebookInstance ¶
func (SDKClient) DescribeNotebookInstance ¶
func (sagemaker SDKClient) DescribeNotebookInstance(name string) (NotebookInstance, error)
func (SDKClient) ListNotebookInstances ¶
func (sagemaker SDKClient) ListNotebookInstances() (NotebookInstances, error)
func (SDKClient) StartNotebookInstance ¶
func (SDKClient) StopNotebookInstance ¶
Click to show internal directories.
Click to hide internal directories.