class Version
| Language | Type name |
|---|---|
Python | aws_rfdk.deadline.Version |
TypeScript (source) | aws-rfdk » deadline » Version |
Implements
IPatch, IRelease
This class is reposonsible to do basic operations on version format.
Initializer
new Version(components: number[])
Parameters
- components
number[]
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. |
| static MINIMUM_SECRETS_MANAGEMENT_VERSION | Version | The minimum Deadline version required to enable Deadline Secrets Management. |
| static MINIMUM_SUPPORTED_DEADLINE_VERSION | Version | This variable holds the value for minimum supported deadline version. |
| static MINIMUM_VERSION_USING_NEW_INSTALLBUILDER_LOG | Version | The minimum Deadline version which uses Install Builder instead of Bitrock Installer. |
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.
static MINIMUM_SECRETS_MANAGEMENT_VERSION
Type:
Version
The minimum Deadline version required to enable Deadline Secrets Management.
static MINIMUM_SUPPORTED_DEADLINE_VERSION
Type:
Version
This variable holds the value for minimum supported deadline version.
static MINIMUM_VERSION_USING_NEW_INSTALLBUILDER_LOG
Type:
Version
The minimum Deadline version which uses Install Builder instead of Bitrock Installer.
Methods
| Name | Description |
|---|---|
| is | This method compares two version strings. |
| is | This method compares two version strings. |
| is | This method compares two version strings. |
| to | The method returns the version components in dot separated string format. |
| static parse(version) | This method parses the input string and returns the version object. |
isEqual(version)
public isEqual(version: Version): boolean
Parameters
- version
Version
Returns
boolean
This method compares two version strings.
isGreaterThan(version)
public isGreaterThan(version: Version): boolean
Parameters
- version
Version
Returns
boolean
This method compares two version strings.
isLessThan(version)
public isLessThan(version: Version): boolean
Parameters
- version
Version
Returns
boolean
This method compares two version strings.
toString()
public toString(): string
Returns
string
The method returns the version components in dot separated string format.
static parse(version)
public static parse(version: string): Version
Parameters
- version
string— version string to parse.
Returns
This method parses the input string and returns the version object.

Python
TypeScript (