Struct rusoto_codecommit::RepositoryTrigger[][src]

pub struct RepositoryTrigger {
    pub branches: Option<Vec<String>>,
    pub custom_data: Option<String>,
    pub destination_arn: String,
    pub events: Vec<String>,
    pub name: String,
}

Information about a trigger for a repository.

Fields

The branches that will be included in the trigger configuration. If you specify an empty array, the trigger will apply to all branches.

While no content is required in the array, you must include the array itself.

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).

The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS).

The valid value "all" cannot be used with any other values.

The name of the trigger.

Trait Implementations

impl Default for RepositoryTrigger
[src]

Returns the "default value" for a type. Read more

impl Debug for RepositoryTrigger
[src]

Formats the value using the given formatter. Read more

impl Clone for RepositoryTrigger
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RepositoryTrigger
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations