#[non_exhaustive]pub struct AssociateRepositoryInput { /* private fields */ }
Implementations§
source§impl AssociateRepositoryInput
impl AssociateRepositoryInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AssociateRepository, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AssociateRepository, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AssociateRepository
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AssociateRepositoryInput
.
source§impl AssociateRepositoryInput
impl AssociateRepositoryInput
sourcepub fn repository(&self) -> Option<&Repository>
pub fn repository(&self) -> Option<&Repository>
The repository to associate.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
Amazon CodeGuru Reviewer uses this value to prevent the accidental creation of duplicate repository associations if there are failures and retries.
An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:
-
A tag key (for example,
CostCenter
,Environment
,Project
, orSecret
). Tag keys are case sensitive. -
An optional field known as a tag value (for example,
111122223333
,Production
, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.
sourcepub fn kms_key_details(&self) -> Option<&KmsKeyDetails>
pub fn kms_key_details(&self) -> Option<&KmsKeyDetails>
A KMSKeyDetails
object that contains:
-
The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (
AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
). -
The ID of the Amazon Web Services KMS key that is associated with this repository association.
Trait Implementations§
source§impl Clone for AssociateRepositoryInput
impl Clone for AssociateRepositoryInput
source§fn clone(&self) -> AssociateRepositoryInput
fn clone(&self) -> AssociateRepositoryInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssociateRepositoryInput
impl Debug for AssociateRepositoryInput
source§impl PartialEq<AssociateRepositoryInput> for AssociateRepositoryInput
impl PartialEq<AssociateRepositoryInput> for AssociateRepositoryInput
source§fn eq(&self, other: &AssociateRepositoryInput) -> bool
fn eq(&self, other: &AssociateRepositoryInput) -> bool
self
and other
values to be equal, and is used
by ==
.