Struct rusoto_codecommit::GetRepositoryTriggersOutput[][src]

pub struct GetRepositoryTriggersOutput {
    pub configuration_id: Option<String>,
    pub triggers: Option<Vec<RepositoryTrigger>>,
}

Represents the output of a get repository triggers operation.

Fields

The system-generated unique ID for the trigger.

The JSON block of configuration information for each trigger.

Trait Implementations

impl Default for GetRepositoryTriggersOutput
[src]

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

impl Debug for GetRepositoryTriggersOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetRepositoryTriggersOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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