pub struct RepositoryTrigger {
pub branches: Option<Vec<String>>,
pub custom_data: Option<String>,
pub destination_arn: String,
pub events: Vec<String>,
pub name: String,
}Expand description
Information about a trigger for a repository.
Fields§
§branches: Option<Vec<String>>The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
Although no content is required in the array, you must include the array itself.
custom_data: Option<String>Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
destination_arn: StringThe ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
events: Vec<String>The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
The valid value "all" cannot be used with any other values.
name: StringThe name of the trigger.
Trait Implementations§
Source§impl Clone for RepositoryTrigger
impl Clone for RepositoryTrigger
Source§fn clone(&self) -> RepositoryTrigger
fn clone(&self) -> RepositoryTrigger
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RepositoryTrigger
impl Debug for RepositoryTrigger
Source§impl Default for RepositoryTrigger
impl Default for RepositoryTrigger
Source§fn default() -> RepositoryTrigger
fn default() -> RepositoryTrigger
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepositoryTrigger
impl<'de> Deserialize<'de> for RepositoryTrigger
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepositoryTrigger
impl PartialEq for RepositoryTrigger
Source§impl Serialize for RepositoryTrigger
impl Serialize for RepositoryTrigger
impl StructuralPartialEq for RepositoryTrigger
Auto Trait Implementations§
impl Freeze for RepositoryTrigger
impl RefUnwindSafe for RepositoryTrigger
impl Send for RepositoryTrigger
impl Sync for RepositoryTrigger
impl Unpin for RepositoryTrigger
impl UnwindSafe for RepositoryTrigger
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more