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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2516
2517
2518
2519
2520
2521
2522
# File 'lib/aws-sdk-codebuild/types.rb', line 2516

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)


2516
2517
2518
2519
2520
2521
2522
# File 'lib/aws-sdk-codebuild/types.rb', line 2516

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)


2516
2517
2518
2519
2520
2521
2522
# File 'lib/aws-sdk-codebuild/types.rb', line 2516

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