Struct aws_sdk_codestarconnections::operation::update_repository_link::UpdateRepositoryLinkInput
source · #[non_exhaustive]pub struct UpdateRepositoryLinkInput {
pub connection_arn: Option<String>,
pub encryption_key_arn: Option<String>,
pub repository_link_id: Option<String>,
}
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.connection_arn: Option<String>
The Amazon Resource Name (ARN) of the connection for the repository link to be updated. The updated connection ARN must have the same providerType (such as GitHub) as the original connection ARN for the repo link.
encryption_key_arn: Option<String>
The Amazon Resource Name (ARN) of the encryption key for the repository link to be updated.
repository_link_id: Option<String>
The ID of the repository link to be updated.
Implementations§
source§impl UpdateRepositoryLinkInput
impl UpdateRepositoryLinkInput
sourcepub fn connection_arn(&self) -> Option<&str>
pub fn connection_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the connection for the repository link to be updated. The updated connection ARN must have the same providerType (such as GitHub) as the original connection ARN for the repo link.
sourcepub fn encryption_key_arn(&self) -> Option<&str>
pub fn encryption_key_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the encryption key for the repository link to be updated.
sourcepub fn repository_link_id(&self) -> Option<&str>
pub fn repository_link_id(&self) -> Option<&str>
The ID of the repository link to be updated.
source§impl UpdateRepositoryLinkInput
impl UpdateRepositoryLinkInput
sourcepub fn builder() -> UpdateRepositoryLinkInputBuilder
pub fn builder() -> UpdateRepositoryLinkInputBuilder
Creates a new builder-style object to manufacture UpdateRepositoryLinkInput
.
Trait Implementations§
source§impl Clone for UpdateRepositoryLinkInput
impl Clone for UpdateRepositoryLinkInput
source§fn clone(&self) -> UpdateRepositoryLinkInput
fn clone(&self) -> UpdateRepositoryLinkInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateRepositoryLinkInput
impl Debug for UpdateRepositoryLinkInput
impl StructuralPartialEq for UpdateRepositoryLinkInput
Auto Trait Implementations§
impl Freeze for UpdateRepositoryLinkInput
impl RefUnwindSafe for UpdateRepositoryLinkInput
impl Send for UpdateRepositoryLinkInput
impl Sync for UpdateRepositoryLinkInput
impl Unpin for UpdateRepositoryLinkInput
impl UnwindSafe for UpdateRepositoryLinkInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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