[][src]Struct rusoto_codecommit::BatchAssociateApprovalRuleTemplateWithRepositoriesInput

pub struct BatchAssociateApprovalRuleTemplateWithRepositoriesInput {
    pub approval_rule_template_name: String,
    pub repository_names: Vec<String>,
}

Fields

approval_rule_template_name: String

The name of the template you want to associate with one or more repositories.

repository_names: Vec<String>

The names of the repositories you want to associate with the template.

The length constraint limit is for each string in the array. The array itself can be empty.

Trait Implementations

impl Clone for BatchAssociateApprovalRuleTemplateWithRepositoriesInput[src]

impl Debug for BatchAssociateApprovalRuleTemplateWithRepositoriesInput[src]

impl Default for BatchAssociateApprovalRuleTemplateWithRepositoriesInput[src]

impl PartialEq<BatchAssociateApprovalRuleTemplateWithRepositoriesInput> for BatchAssociateApprovalRuleTemplateWithRepositoriesInput[src]

impl Serialize for BatchAssociateApprovalRuleTemplateWithRepositoriesInput[src]

impl StructuralPartialEq for BatchAssociateApprovalRuleTemplateWithRepositoriesInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.