interface IPatchVersion
| Language | Type name |
|---|---|
Python | aws_rfdk.deadline.IPatchVersion |
TypeScript (source) | aws-rfdk » deadline » IPatchVersion |
Implemented by
Version
Represents a fully-qualified release version number.
E.g. 10.1.9.2
Properties
| Name | Type | Description |
|---|---|---|
| major | number | The major version number. |
| minor | number | The minor version number. |
| patch | number | The patch 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.
patchVersion
Type:
number
The patch 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 (