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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_executions ⇒ Array<Types::RepositoryTriggerExecutionFailure>
The list of triggers that were not 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 tested. This list provides the names of the triggers that could not be tested, separated by commas.
6727 6728 6729 6730 6731 6732 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6727 class TestRepositoryTriggersOutput < Struct.new( :successful_executions, :failed_executions) SENSITIVE = [] 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.
6727 6728 6729 6730 6731 6732 |
# File 'lib/aws-sdk-codecommit/types.rb', line 6727 class TestRepositoryTriggersOutput < Struct.new( :successful_executions, :failed_executions) SENSITIVE = [] include Aws::Structure end |