Struct rusoto_codecommit::PutRepositoryTriggersInput[][src]

pub struct PutRepositoryTriggersInput {
    pub repository_name: String,
    pub triggers: Vec<RepositoryTrigger>,
}

Represents the input ofa put repository triggers operation.

Fields

The name of the repository where you want to create or update the trigger.

The JSON block of configuration information for each trigger.

Trait Implementations

impl Default for PutRepositoryTriggersInput
[src]

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

impl Debug for PutRepositoryTriggersInput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutRepositoryTriggersInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutRepositoryTriggersInput
[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