Struct aws_sdk_codeartifact::operation::get_associated_package_group::builders::GetAssociatedPackageGroupOutputBuilder
source · #[non_exhaustive]pub struct GetAssociatedPackageGroupOutputBuilder { /* private fields */ }
Expand description
A builder for GetAssociatedPackageGroupOutput
.
Implementations§
source§impl GetAssociatedPackageGroupOutputBuilder
impl GetAssociatedPackageGroupOutputBuilder
sourcepub fn package_group(self, input: PackageGroupDescription) -> Self
pub fn package_group(self, input: PackageGroupDescription) -> Self
The package group that is associated with the requested package.
sourcepub fn set_package_group(self, input: Option<PackageGroupDescription>) -> Self
pub fn set_package_group(self, input: Option<PackageGroupDescription>) -> Self
The package group that is associated with the requested package.
sourcepub fn get_package_group(&self) -> &Option<PackageGroupDescription>
pub fn get_package_group(&self) -> &Option<PackageGroupDescription>
The package group that is associated with the requested package.
sourcepub fn association_type(self, input: PackageGroupAssociationType) -> Self
pub fn association_type(self, input: PackageGroupAssociationType) -> Self
Describes the strength of the association between the package and package group. A strong match is also known as an exact match, and a weak match is known as a relative match.
sourcepub fn set_association_type(
self,
input: Option<PackageGroupAssociationType>,
) -> Self
pub fn set_association_type( self, input: Option<PackageGroupAssociationType>, ) -> Self
Describes the strength of the association between the package and package group. A strong match is also known as an exact match, and a weak match is known as a relative match.
sourcepub fn get_association_type(&self) -> &Option<PackageGroupAssociationType>
pub fn get_association_type(&self) -> &Option<PackageGroupAssociationType>
Describes the strength of the association between the package and package group. A strong match is also known as an exact match, and a weak match is known as a relative match.
sourcepub fn build(self) -> GetAssociatedPackageGroupOutput
pub fn build(self) -> GetAssociatedPackageGroupOutput
Consumes the builder and constructs a GetAssociatedPackageGroupOutput
.
Trait Implementations§
source§impl Clone for GetAssociatedPackageGroupOutputBuilder
impl Clone for GetAssociatedPackageGroupOutputBuilder
source§fn clone(&self) -> GetAssociatedPackageGroupOutputBuilder
fn clone(&self) -> GetAssociatedPackageGroupOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetAssociatedPackageGroupOutputBuilder
impl Default for GetAssociatedPackageGroupOutputBuilder
source§fn default() -> GetAssociatedPackageGroupOutputBuilder
fn default() -> GetAssociatedPackageGroupOutputBuilder
source§impl PartialEq for GetAssociatedPackageGroupOutputBuilder
impl PartialEq for GetAssociatedPackageGroupOutputBuilder
source§fn eq(&self, other: &GetAssociatedPackageGroupOutputBuilder) -> bool
fn eq(&self, other: &GetAssociatedPackageGroupOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetAssociatedPackageGroupOutputBuilder
Auto Trait Implementations§
impl Freeze for GetAssociatedPackageGroupOutputBuilder
impl RefUnwindSafe for GetAssociatedPackageGroupOutputBuilder
impl Send for GetAssociatedPackageGroupOutputBuilder
impl Sync for GetAssociatedPackageGroupOutputBuilder
impl Unpin for GetAssociatedPackageGroupOutputBuilder
impl UnwindSafe for GetAssociatedPackageGroupOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more