interface IReleaseVersion
| Language | Type name |
|---|---|
Python | aws_rfdk.deadline.IReleaseVersion |
TypeScript (source) | aws-rfdk » deadline » IReleaseVersion |
Implemented by
Version, Version
Represents a release of Deadline up to and including the third (release) component of the version.
E.g. 10.1.9
Properties
| Name | Type | Description |
|---|---|---|
| major | number | The major version number. |
| minor | number | The minor version number. |
| release | number | The release version number. |
| version | string | A string representation of the version using the best available information at synthesis-time. |
majorVersion
Type:
number
The major version number.
minorVersion
Type:
number
The minor version number.
releaseVersion
Type:
number
The release version number.
versionString
Type:
string
A string representation of the version using the best available information at synthesis-time.
This value is not guaranteed to be resolved, and is intended for output to CDK users.
Methods
| Name | Description |
|---|---|
| is | Returns whether this version is less than another version. |
isLessThan(other)
public isLessThan(other: Version): boolean
Parameters
- other
Version— Other version to be compared.
Returns
boolean
Returns whether this version is less than another version.

Python
TypeScript (