#[non_exhaustive]pub struct ListCodeRepositoriesOutput {
pub code_repository_summary_list: Option<Vec<CodeRepositorySummary>>,
pub next_token: Option<String>,
/* private fields */
}
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§
source§impl ListCodeRepositoriesOutput
impl ListCodeRepositoriesOutput
sourcepub fn code_repository_summary_list(&self) -> &[CodeRepositorySummary]
pub fn code_repository_summary_list(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .code_repository_summary_list.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl ListCodeRepositoriesOutput
impl ListCodeRepositoriesOutput
sourcepub fn builder() -> ListCodeRepositoriesOutputBuilder
pub fn builder() -> ListCodeRepositoriesOutputBuilder
Creates a new builder-style object to manufacture ListCodeRepositoriesOutput
.
Trait Implementations§
source§impl Clone for ListCodeRepositoriesOutput
impl Clone for ListCodeRepositoriesOutput
source§fn clone(&self) -> ListCodeRepositoriesOutput
fn clone(&self) -> ListCodeRepositoriesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListCodeRepositoriesOutput
impl Debug for ListCodeRepositoriesOutput
source§impl PartialEq for ListCodeRepositoriesOutput
impl PartialEq for ListCodeRepositoriesOutput
source§fn eq(&self, other: &ListCodeRepositoriesOutput) -> bool
fn eq(&self, other: &ListCodeRepositoriesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListCodeRepositoriesOutput
impl RequestId for ListCodeRepositoriesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.