Class: Aws::CodeBuild::Types::DeleteBuildBatchOutput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeBuild::Types::DeleteBuildBatchOutput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codebuild/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #builds_deleted  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of strings that contain the identifiers of the builds that were deleted.
 - 
  
    
      #builds_not_deleted  ⇒ Array<Types::BuildNotDeleted> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of ‘BuildNotDeleted` objects that specify the builds that could not be deleted.
 - 
  
    
      #status_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status code.
 
Instance Attribute Details
#builds_deleted ⇒ Array<String>
An array of strings that contain the identifiers of the builds that were deleted.
      2099 2100 2101 2102 2103 2104 2105  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 2099 class DeleteBuildBatchOutput < Struct.new( :status_code, :builds_deleted, :builds_not_deleted) SENSITIVE = [] include Aws::Structure end  | 
  
#builds_not_deleted ⇒ Array<Types::BuildNotDeleted>
An array of ‘BuildNotDeleted` objects that specify the builds that could not be deleted.
      2099 2100 2101 2102 2103 2104 2105  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 2099 class DeleteBuildBatchOutput < Struct.new( :status_code, :builds_deleted, :builds_not_deleted) SENSITIVE = [] include Aws::Structure end  | 
  
#status_code ⇒ String
The status code.
      2099 2100 2101 2102 2103 2104 2105  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 2099 class DeleteBuildBatchOutput < Struct.new( :status_code, :builds_deleted, :builds_not_deleted) SENSITIVE = [] include Aws::Structure end  |