#[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
sourceimpl 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.
sourceimpl S3RepositoryDetails
impl S3RepositoryDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3RepositoryDetails.
Trait Implementations
sourceimpl Clone for S3RepositoryDetails
impl Clone for S3RepositoryDetails
sourcefn clone(&self) -> S3RepositoryDetails
fn clone(&self) -> S3RepositoryDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for S3RepositoryDetails
impl Debug for S3RepositoryDetails
sourceimpl PartialEq<S3RepositoryDetails> for S3RepositoryDetails
impl PartialEq<S3RepositoryDetails> for S3RepositoryDetails
sourcefn eq(&self, other: &S3RepositoryDetails) -> bool
fn eq(&self, other: &S3RepositoryDetails) -> bool
impl StructuralPartialEq for S3RepositoryDetails
Auto Trait Implementations
impl RefUnwindSafe for S3RepositoryDetails
impl Send for S3RepositoryDetails
impl Sync for S3RepositoryDetails
impl Unpin for S3RepositoryDetails
impl UnwindSafe for S3RepositoryDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more