Class: Aws::CodeCommit::Types::TestRepositoryTriggersOutput

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

Overview

Represents the output of a test repository triggers operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#failed_executionsArray<Types::RepositoryTriggerExecutionFailure>

The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.



6721
6722
6723
6724
6725
6726
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6721

class TestRepositoryTriggersOutput < Struct.new(
  :successful_executions,
  :failed_executions)
  SENSITIVE = []
  include Aws::Structure
end

#successful_executionsArray<String>

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

Returns:

  • (Array<String>)


6721
6722
6723
6724
6725
6726
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 6721

class TestRepositoryTriggersOutput < Struct.new(
  :successful_executions,
  :failed_executions)
  SENSITIVE = []
  include Aws::Structure
end