Class: Aws::CodeBuild::Types::BuildBatchFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::BuildBatchFilter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Note:
When making an API call, you may pass BuildBatchFilter data as a hash:
{
status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, FAULT, TIMED_OUT, IN_PROGRESS, STOPPED
}
Specifies filters when retrieving batch builds.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the batch builds to retrieve.
Instance Attribute Details
#status ⇒ String
The status of the batch builds to retrieve. Only batch builds that have this status will be retrieved.
885 886 887 888 889 |
# File 'lib/aws-sdk-codebuild/types.rb', line 885 class BuildBatchFilter < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |