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 no branches are specified, the trigger will apply to all branches.

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]

[src]

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

impl Debug for RepositoryTrigger
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RepositoryTrigger
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations