#[non_exhaustive]pub struct AssociateRepositoryInput {
pub repository: Option<Repository>,
pub client_request_token: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub kms_key_details: Option<KmsKeyDetails>,
}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.repository: Option<Repository>The repository to associate.
client_request_token: Option<String>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.
kms_key_details: 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 respository association.
Implementations
sourceimpl AssociateRepositoryInput
impl AssociateRepositoryInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AssociateRepository, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AssociateRepository, AwsErrorRetryPolicy>, 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
sourceimpl 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 respository association.
Trait Implementations
sourceimpl Clone for AssociateRepositoryInput
impl Clone for AssociateRepositoryInput
sourcefn clone(&self) -> AssociateRepositoryInput
fn clone(&self) -> AssociateRepositoryInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AssociateRepositoryInput
impl Debug for AssociateRepositoryInput
sourceimpl PartialEq<AssociateRepositoryInput> for AssociateRepositoryInput
impl PartialEq<AssociateRepositoryInput> for AssociateRepositoryInput
sourcefn eq(&self, other: &AssociateRepositoryInput) -> bool
fn eq(&self, other: &AssociateRepositoryInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AssociateRepositoryInput) -> bool
fn ne(&self, other: &AssociateRepositoryInput) -> bool
This method tests for !=.
impl StructuralPartialEq for AssociateRepositoryInput
Auto Trait Implementations
impl RefUnwindSafe for AssociateRepositoryInput
impl Send for AssociateRepositoryInput
impl Sync for AssociateRepositoryInput
impl Unpin for AssociateRepositoryInput
impl UnwindSafe for AssociateRepositoryInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more