Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Amazonka.SageMaker.DescribeImageVersion
Description
Describes a version of a SageMaker image.
Synopsis
- data DescribeImageVersion = DescribeImageVersion' {}
- newDescribeImageVersion :: Text -> DescribeImageVersion
- describeImageVersion_alias :: Lens' DescribeImageVersion (Maybe Text)
- describeImageVersion_version :: Lens' DescribeImageVersion (Maybe Natural)
- describeImageVersion_imageName :: Lens' DescribeImageVersion Text
- data DescribeImageVersionResponse = DescribeImageVersionResponse' {
- baseImage :: Maybe Text
- containerImage :: Maybe Text
- creationTime :: Maybe POSIX
- failureReason :: Maybe Text
- horovod :: Maybe Bool
- imageArn :: Maybe Text
- imageVersionArn :: Maybe Text
- imageVersionStatus :: Maybe ImageVersionStatus
- jobType :: Maybe JobType
- lastModifiedTime :: Maybe POSIX
- mLFramework :: Maybe Text
- processor :: Maybe Processor
- programmingLang :: Maybe Text
- releaseNotes :: Maybe Text
- vendorGuidance :: Maybe VendorGuidance
- version :: Maybe Natural
- httpStatus :: Int
- newDescribeImageVersionResponse :: Int -> DescribeImageVersionResponse
- describeImageVersionResponse_baseImage :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_containerImage :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_creationTime :: Lens' DescribeImageVersionResponse (Maybe UTCTime)
- describeImageVersionResponse_failureReason :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_horovod :: Lens' DescribeImageVersionResponse (Maybe Bool)
- describeImageVersionResponse_imageArn :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_imageVersionArn :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_imageVersionStatus :: Lens' DescribeImageVersionResponse (Maybe ImageVersionStatus)
- describeImageVersionResponse_jobType :: Lens' DescribeImageVersionResponse (Maybe JobType)
- describeImageVersionResponse_lastModifiedTime :: Lens' DescribeImageVersionResponse (Maybe UTCTime)
- describeImageVersionResponse_mLFramework :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_processor :: Lens' DescribeImageVersionResponse (Maybe Processor)
- describeImageVersionResponse_programmingLang :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_releaseNotes :: Lens' DescribeImageVersionResponse (Maybe Text)
- describeImageVersionResponse_vendorGuidance :: Lens' DescribeImageVersionResponse (Maybe VendorGuidance)
- describeImageVersionResponse_version :: Lens' DescribeImageVersionResponse (Maybe Natural)
- describeImageVersionResponse_httpStatus :: Lens' DescribeImageVersionResponse Int
Creating a Request
data DescribeImageVersion Source #
See: newDescribeImageVersion
smart constructor.
Constructors
DescribeImageVersion' | |
Instances
newDescribeImageVersion Source #
Arguments
:: Text | |
-> DescribeImageVersion |
Create a value of DescribeImageVersion
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:alias:DescribeImageVersion'
, describeImageVersion_alias
- The alias of the image version.
DescribeImageVersion
, describeImageVersion_version
- The version of the image. If not specified, the latest version is
described.
DescribeImageVersion
, describeImageVersion_imageName
- The name of the image.
Request Lenses
describeImageVersion_alias :: Lens' DescribeImageVersion (Maybe Text) Source #
The alias of the image version.
describeImageVersion_version :: Lens' DescribeImageVersion (Maybe Natural) Source #
The version of the image. If not specified, the latest version is described.
describeImageVersion_imageName :: Lens' DescribeImageVersion Text Source #
The name of the image.
Destructuring the Response
data DescribeImageVersionResponse Source #
See: newDescribeImageVersionResponse
smart constructor.
Constructors
DescribeImageVersionResponse' | |
Fields
|
Instances
newDescribeImageVersionResponse Source #
Create a value of DescribeImageVersionResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:baseImage:DescribeImageVersionResponse'
, describeImageVersionResponse_baseImage
- The registry path of the container image on which this image version is
based.
$sel:containerImage:DescribeImageVersionResponse'
, describeImageVersionResponse_containerImage
- The registry path of the container image that contains this image
version.
DescribeImageVersionResponse
, describeImageVersionResponse_creationTime
- When the version was created.
DescribeImageVersionResponse
, describeImageVersionResponse_failureReason
- When a create or delete operation fails, the reason for the failure.
$sel:horovod:DescribeImageVersionResponse'
, describeImageVersionResponse_horovod
- Indicates Horovod compatibility.
DescribeImageVersionResponse
, describeImageVersionResponse_imageArn
- The ARN of the image the version is based on.
DescribeImageVersionResponse
, describeImageVersionResponse_imageVersionArn
- The ARN of the version.
DescribeImageVersionResponse
, describeImageVersionResponse_imageVersionStatus
- The status of the version.
DescribeImageVersionResponse
, describeImageVersionResponse_jobType
- Indicates SageMaker job type compatibility.
TRAINING
: The image version is compatible with SageMaker training jobs.INFERENCE
: The image version is compatible with SageMaker inference jobs.NOTEBOOK_KERNEL
: The image version is compatible with SageMaker notebook kernels.
DescribeImageVersionResponse
, describeImageVersionResponse_lastModifiedTime
- When the version was last modified.
$sel:mLFramework:DescribeImageVersionResponse'
, describeImageVersionResponse_mLFramework
- The machine learning framework vended in the image version.
$sel:processor:DescribeImageVersionResponse'
, describeImageVersionResponse_processor
- Indicates CPU or GPU compatibility.
CPU
: The image version is compatible with CPU.GPU
: The image version is compatible with GPU.
$sel:programmingLang:DescribeImageVersionResponse'
, describeImageVersionResponse_programmingLang
- The supported programming language and its version.
$sel:releaseNotes:DescribeImageVersionResponse'
, describeImageVersionResponse_releaseNotes
- The maintainer description of the image version.
$sel:vendorGuidance:DescribeImageVersionResponse'
, describeImageVersionResponse_vendorGuidance
- The stability of the image version specified by the maintainer.
NOT_PROVIDED
: The maintainers did not provide a status for image version stability.STABLE
: The image version is stable.TO_BE_ARCHIVED
: The image version is set to be archived. Custom image versions that are set to be archived are automatically archived after three months.ARCHIVED
: The image version is archived. Archived image versions are not searchable and are no longer actively supported.
DescribeImageVersion
, describeImageVersionResponse_version
- The version number.
$sel:httpStatus:DescribeImageVersionResponse'
, describeImageVersionResponse_httpStatus
- The response's http status code.
Response Lenses
describeImageVersionResponse_baseImage :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The registry path of the container image on which this image version is based.
describeImageVersionResponse_containerImage :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The registry path of the container image that contains this image version.
describeImageVersionResponse_creationTime :: Lens' DescribeImageVersionResponse (Maybe UTCTime) Source #
When the version was created.
describeImageVersionResponse_failureReason :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
When a create or delete operation fails, the reason for the failure.
describeImageVersionResponse_horovod :: Lens' DescribeImageVersionResponse (Maybe Bool) Source #
Indicates Horovod compatibility.
describeImageVersionResponse_imageArn :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The ARN of the image the version is based on.
describeImageVersionResponse_imageVersionArn :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The ARN of the version.
describeImageVersionResponse_imageVersionStatus :: Lens' DescribeImageVersionResponse (Maybe ImageVersionStatus) Source #
The status of the version.
describeImageVersionResponse_jobType :: Lens' DescribeImageVersionResponse (Maybe JobType) Source #
Indicates SageMaker job type compatibility.
TRAINING
: The image version is compatible with SageMaker training jobs.INFERENCE
: The image version is compatible with SageMaker inference jobs.NOTEBOOK_KERNEL
: The image version is compatible with SageMaker notebook kernels.
describeImageVersionResponse_lastModifiedTime :: Lens' DescribeImageVersionResponse (Maybe UTCTime) Source #
When the version was last modified.
describeImageVersionResponse_mLFramework :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The machine learning framework vended in the image version.
describeImageVersionResponse_processor :: Lens' DescribeImageVersionResponse (Maybe Processor) Source #
Indicates CPU or GPU compatibility.
CPU
: The image version is compatible with CPU.GPU
: The image version is compatible with GPU.
describeImageVersionResponse_programmingLang :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The supported programming language and its version.
describeImageVersionResponse_releaseNotes :: Lens' DescribeImageVersionResponse (Maybe Text) Source #
The maintainer description of the image version.
describeImageVersionResponse_vendorGuidance :: Lens' DescribeImageVersionResponse (Maybe VendorGuidance) Source #
The stability of the image version specified by the maintainer.
NOT_PROVIDED
: The maintainers did not provide a status for image version stability.STABLE
: The image version is stable.TO_BE_ARCHIVED
: The image version is set to be archived. Custom image versions that are set to be archived are automatically archived after three months.ARCHIVED
: The image version is archived. Archived image versions are not searchable and are no longer actively supported.
describeImageVersionResponse_version :: Lens' DescribeImageVersionResponse (Maybe Natural) Source #
The version number.
describeImageVersionResponse_httpStatus :: Lens' DescribeImageVersionResponse Int Source #
The response's http status code.