Class: Aws::CodeCommit::Types::TestRepositoryTriggersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::TestRepositoryTriggersInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass TestRepositoryTriggersInput data as a hash:
{
repository_name: "RepositoryName", # required
triggers: [ # required
{
name: "RepositoryTriggerName", # required
destination_arn: "Arn", # required
custom_data: "RepositoryTriggerCustomData",
branches: ["BranchName"],
events: ["all"], # required, accepts all, updateReference, createReference, deleteReference
},
],
}
Represents the input of a test repository triggers operation.
Instance Attribute Summary collapse
-
#repository_name ⇒ String
The name of the repository in which to test the triggers.
-
#triggers ⇒ Array<Types::RepositoryTrigger>
The list of triggers to test.
Instance Attribute Details
#repository_name ⇒ String
The name of the repository in which to test the triggers.
908 909 910 911 912 |
# File 'lib/aws-sdk-codecommit/types.rb', line 908 class TestRepositoryTriggersInput < Struct.new( :repository_name, :triggers) include Aws::Structure end |
#triggers ⇒ Array<Types::RepositoryTrigger>
The list of triggers to test.
908 909 910 911 912 |
# File 'lib/aws-sdk-codecommit/types.rb', line 908 class TestRepositoryTriggersInput < Struct.new( :repository_name, :triggers) include Aws::Structure end |