Struct aws_sdk_codeartifact::operation::update_package_group_origin_configuration::builders::UpdatePackageGroupOriginConfigurationOutputBuilder
source · #[non_exhaustive]pub struct UpdatePackageGroupOriginConfigurationOutputBuilder { /* private fields */ }
Expand description
A builder for UpdatePackageGroupOriginConfigurationOutput
.
Implementations§
source§impl UpdatePackageGroupOriginConfigurationOutputBuilder
impl UpdatePackageGroupOriginConfigurationOutputBuilder
sourcepub fn package_group(self, input: PackageGroupDescription) -> Self
pub fn package_group(self, input: PackageGroupDescription) -> Self
The package group and information about it after processing the request.
sourcepub fn set_package_group(self, input: Option<PackageGroupDescription>) -> Self
pub fn set_package_group(self, input: Option<PackageGroupDescription>) -> Self
The package group and information about it after processing the request.
sourcepub fn get_package_group(&self) -> &Option<PackageGroupDescription>
pub fn get_package_group(&self) -> &Option<PackageGroupDescription>
The package group and information about it after processing the request.
sourcepub fn allowed_repository_updates(
self,
k: PackageGroupOriginRestrictionType,
v: HashMap<PackageGroupAllowedRepositoryUpdateType, Vec<String>>,
) -> Self
pub fn allowed_repository_updates( self, k: PackageGroupOriginRestrictionType, v: HashMap<PackageGroupAllowedRepositoryUpdateType, Vec<String>>, ) -> Self
Adds a key-value pair to allowed_repository_updates
.
To override the contents of this collection use set_allowed_repository_updates
.
Information about the updated allowed repositories after processing the request.
sourcepub fn set_allowed_repository_updates(
self,
input: Option<HashMap<PackageGroupOriginRestrictionType, HashMap<PackageGroupAllowedRepositoryUpdateType, Vec<String>>>>,
) -> Self
pub fn set_allowed_repository_updates( self, input: Option<HashMap<PackageGroupOriginRestrictionType, HashMap<PackageGroupAllowedRepositoryUpdateType, Vec<String>>>>, ) -> Self
Information about the updated allowed repositories after processing the request.
sourcepub fn get_allowed_repository_updates(
&self,
) -> &Option<HashMap<PackageGroupOriginRestrictionType, HashMap<PackageGroupAllowedRepositoryUpdateType, Vec<String>>>>
pub fn get_allowed_repository_updates( &self, ) -> &Option<HashMap<PackageGroupOriginRestrictionType, HashMap<PackageGroupAllowedRepositoryUpdateType, Vec<String>>>>
Information about the updated allowed repositories after processing the request.
sourcepub fn build(self) -> UpdatePackageGroupOriginConfigurationOutput
pub fn build(self) -> UpdatePackageGroupOriginConfigurationOutput
Consumes the builder and constructs a UpdatePackageGroupOriginConfigurationOutput
.
Trait Implementations§
source§impl Clone for UpdatePackageGroupOriginConfigurationOutputBuilder
impl Clone for UpdatePackageGroupOriginConfigurationOutputBuilder
source§fn clone(&self) -> UpdatePackageGroupOriginConfigurationOutputBuilder
fn clone(&self) -> UpdatePackageGroupOriginConfigurationOutputBuilder
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 Default for UpdatePackageGroupOriginConfigurationOutputBuilder
impl Default for UpdatePackageGroupOriginConfigurationOutputBuilder
source§fn default() -> UpdatePackageGroupOriginConfigurationOutputBuilder
fn default() -> UpdatePackageGroupOriginConfigurationOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdatePackageGroupOriginConfigurationOutputBuilder
impl PartialEq for UpdatePackageGroupOriginConfigurationOutputBuilder
source§fn eq(&self, other: &UpdatePackageGroupOriginConfigurationOutputBuilder) -> bool
fn eq(&self, other: &UpdatePackageGroupOriginConfigurationOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdatePackageGroupOriginConfigurationOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePackageGroupOriginConfigurationOutputBuilder
impl RefUnwindSafe for UpdatePackageGroupOriginConfigurationOutputBuilder
impl Send for UpdatePackageGroupOriginConfigurationOutputBuilder
impl Sync for UpdatePackageGroupOriginConfigurationOutputBuilder
impl Unpin for UpdatePackageGroupOriginConfigurationOutputBuilder
impl UnwindSafe for UpdatePackageGroupOriginConfigurationOutputBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.