Method: Aws::CodeBuild::Types::BuildBatch#build_groups
- Defined in:
- lib/aws-sdk-codebuild/types.rb
#build_groups ⇒ Array<Types::BuildGroup>
An array of BuildGroup objects that define the build groups for the batch build.
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 |
# File 'lib/aws-sdk-codebuild/types.rb', line 943 class BuildBatch < Struct.new( :id, :arn, :start_time, :end_time, :current_phase, :build_batch_status, :source_version, :resolved_source_version, :project_name, :phases, :source, :secondary_sources, :secondary_source_versions, :artifacts, :secondary_artifacts, :cache, :environment, :service_role, :log_config, :build_timeout_in_minutes, :queued_timeout_in_minutes, :complete, :initiator, :vpc_config, :encryption_key, :build_batch_number, :file_system_locations, :build_batch_config, :build_groups, :debug_session_enabled, :report_arns) SENSITIVE = [] include Aws::Structure end |