IPatchVersion

class aws_rfdk.deadline.IPatchVersion(*args, **kwargs)

Bases: IReleaseVersion, Protocol

Represents a fully-qualified release version number.

E.g. 10.1.9.2

Methods

is_less_than(other)

Returns whether this version is less than another version.

Parameters:

other (Version) – Other version to be compared.

Return type:

bool

Attributes

major_version

The major version number.

minor_version

The minor version number.

patch_version

The patch version number.

release_version

The release version number.

version_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.