Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::CodeBuild::Types::FleetStatus

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb

Overview

The status of the compute fleet.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#contextString

Additional information about a compute fleet. Valid values include:

  • CREATE_FAILED: The compute fleet has failed to create.

  • UPDATE_FAILED: The compute fleet has failed to update.

Returns:

  • (String)

3039
3040
3041
3042
3043
3044
3045
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3039

class FleetStatus < Struct.new(
  :status_code,
  :context,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

A message associated with the status of a compute fleet.

Returns:

  • (String)

3039
3040
3041
3042
3043
3044
3045
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3039

class FleetStatus < Struct.new(
  :status_code,
  :context,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#status_codeString

The status code of the compute fleet. Valid values include:

  • CREATING: The compute fleet is being created.

  • UPDATING: The compute fleet is being updated.

  • ROTATING: The compute fleet is being rotated.

  • PENDING_DELETION: The compute fleet is pending deletion.

  • DELETING: The compute fleet is being deleted.

  • CREATE_FAILED: The compute fleet has failed to create.

  • UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to previous state.

  • ACTIVE: The compute fleet has succeeded and is active.

Returns:

  • (String)

3039
3040
3041
3042
3043
3044
3045
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3039

class FleetStatus < Struct.new(
  :status_code,
  :context,
  :message)
  SENSITIVE = []
  include Aws::Structure
end