Class: Aws::CodeCommit::Types::TestRepositoryTriggersOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::TestRepositoryTriggersOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Represents the output of a test repository triggers operation.
Instance Attribute Summary collapse
-
#failed_executions ⇒ Array<Types::RepositoryTriggerExecutionFailure>
The list of triggers that were not able to be tested.
-
#successful_executions ⇒ Array<String>
The list of triggers that were successfully tested.
Instance Attribute Details
#failed_executions ⇒ Array<Types::RepositoryTriggerExecutionFailure>
The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.
930 931 932 933 934 |
# File 'lib/aws-sdk-codecommit/types.rb', line 930 class TestRepositoryTriggersOutput < Struct.new( :successful_executions, :failed_executions) include Aws::Structure end |
#successful_executions ⇒ Array<String>
The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
930 931 932 933 934 |
# File 'lib/aws-sdk-codecommit/types.rb', line 930 class TestRepositoryTriggersOutput < Struct.new( :successful_executions, :failed_executions) include Aws::Structure end |