[][src]Struct rusoto_codecommit::ApprovalRuleTemplate

pub struct ApprovalRuleTemplate {
    pub approval_rule_template_content: Option<String>,
    pub approval_rule_template_description: Option<String>,
    pub approval_rule_template_id: Option<String>,
    pub approval_rule_template_name: Option<String>,
    pub creation_date: Option<f64>,
    pub last_modified_date: Option<f64>,
    pub last_modified_user: Option<String>,
    pub rule_content_sha_256: Option<String>,
}

Returns information about an approval rule template.

Fields

approval_rule_template_content: Option<String>

The content of the approval rule template.

approval_rule_template_description: Option<String>

The description of the approval rule template.

approval_rule_template_id: Option<String>

The system-generated ID of the approval rule template.

approval_rule_template_name: Option<String>

The name of the approval rule template.

creation_date: Option<f64>

The date the approval rule template was created, in timestamp format.

last_modified_date: Option<f64>

The date the approval rule template was most recently changed, in timestamp format.

last_modified_user: Option<String>

The Amazon Resource Name (ARN) of the user who made the most recent changes to the approval rule template.

rule_content_sha_256: Option<String>

The SHA-256 hash signature for the content of the approval rule template.

Trait Implementations

impl Clone for ApprovalRuleTemplate[src]

impl Debug for ApprovalRuleTemplate[src]

impl Default for ApprovalRuleTemplate[src]

impl<'de> Deserialize<'de> for ApprovalRuleTemplate[src]

impl PartialEq<ApprovalRuleTemplate> for ApprovalRuleTemplate[src]

impl StructuralPartialEq for ApprovalRuleTemplate[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.