Struct rusoto_codecommit::TestRepositoryTriggersOutput [] [src]

pub struct TestRepositoryTriggersOutput {
    pub failed_executions: Option<Vec<RepositoryTriggerExecutionFailure>>,
    pub successful_executions: Option<Vec<String>>,
}

Represents the output of a test repository triggers operation.

Fields

The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.

Trait Implementations

impl Default for TestRepositoryTriggersOutput
[src]

[src]

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

impl Debug for TestRepositoryTriggersOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TestRepositoryTriggersOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations