[][src]Struct rusoto_sagemaker::ListCodeRepositoriesOutput

pub struct ListCodeRepositoriesOutput {
    pub code_repository_summary_list: Vec<CodeRepositorySummary>,
    pub next_token: Option<String>,
}

Fields

code_repository_summary_list: Vec<CodeRepositorySummary>

Gets a list of summaries of the Git repositories. Each summary specifies the following values for the repository:

  • Name

  • Amazon Resource Name (ARN)

  • Creation time

  • Last modified time

  • Configuration information, including the URL location of the repository and the ARN of the AWS Secrets Manager secret that contains the credentials used to access the repository.

next_token: Option<String>

If the result of a ListCodeRepositoriesOutput request was truncated, the response includes a NextToken. To get the next set of Git repositories, use the token in the next request.

Trait Implementations

impl Clone for ListCodeRepositoriesOutput[src]

impl Debug for ListCodeRepositoriesOutput[src]

impl Default for ListCodeRepositoriesOutput[src]

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

impl PartialEq<ListCodeRepositoriesOutput> for ListCodeRepositoriesOutput[src]

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