[][src]Struct rusoto_codeguru_reviewer::CreateCodeReviewRequest

pub struct CreateCodeReviewRequest {
    pub client_request_token: Option<String>,
    pub name: String,
    pub repository_association_arn: String,
    pub type_: CodeReviewType,
}

Fields

client_request_token: Option<String>

Amazon CodeGuru Reviewer uses this value to prevent the accidental creation of duplicate code reviews if there are failures and retries.

name: String

The name of the code review. The name of each code review in your AWS account must be unique.

repository_association_arn: String

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

A code review can only be created on an associated repository. This is the ARN of the associated repository.

type_: CodeReviewType

The type of code review to create. This is specified using a CodeReviewType object. You can create a code review only of type RepositoryAnalysis.

Trait Implementations

impl Clone for CreateCodeReviewRequest[src]

impl Debug for CreateCodeReviewRequest[src]

impl Default for CreateCodeReviewRequest[src]

impl PartialEq<CreateCodeReviewRequest> for CreateCodeReviewRequest[src]

impl Serialize for CreateCodeReviewRequest[src]

impl StructuralPartialEq for CreateCodeReviewRequest[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> 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.