#[non_exhaustive]pub struct S3RepositoryDetails { /* private fields */ }Expand description
Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.
Implementations§
source§impl S3RepositoryDetails
impl S3RepositoryDetails
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.
sourcepub fn code_artifacts(&self) -> Option<&CodeArtifacts>
pub fn code_artifacts(&self) -> Option<&CodeArtifacts>
A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.
source§impl S3RepositoryDetails
impl S3RepositoryDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3RepositoryDetails.
Trait Implementations§
source§impl Clone for S3RepositoryDetails
impl Clone for S3RepositoryDetails
source§fn clone(&self) -> S3RepositoryDetails
fn clone(&self) -> S3RepositoryDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for S3RepositoryDetails
impl Debug for S3RepositoryDetails
source§impl PartialEq<S3RepositoryDetails> for S3RepositoryDetails
impl PartialEq<S3RepositoryDetails> for S3RepositoryDetails
source§fn eq(&self, other: &S3RepositoryDetails) -> bool
fn eq(&self, other: &S3RepositoryDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.