Struct aws_sdk_sagemaker::output::ListCodeRepositoriesOutput [−][src]
#[non_exhaustive]pub struct ListCodeRepositoriesOutput {
pub code_repository_summary_list: Option<Vec<CodeRepositorySummary>>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code_repository_summary_list: Option<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 Amazon Web Services 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.
Implementations
Creates a new builder-style object to manufacture ListCodeRepositoriesOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListCodeRepositoriesOutput
impl Send for ListCodeRepositoriesOutput
impl Sync for ListCodeRepositoriesOutput
impl Unpin for ListCodeRepositoriesOutput
impl UnwindSafe for ListCodeRepositoriesOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more