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
source§impl PartialEq for UpdateRepositoryLinkInput
impl PartialEq for UpdateRepositoryLinkInput
source§fn eq(&self, other: &UpdateRepositoryLinkInput) -> bool
fn eq(&self, other: &UpdateRepositoryLinkInput) -> bool
self
and other
values to be equal, and is used
by ==
.