Struct aws_sdk_dataexchange::input::RevokeRevisionInput
source · [−]#[non_exhaustive]pub struct RevokeRevisionInput {
pub data_set_id: Option<String>,
pub revision_id: Option<String>,
pub revocation_comment: Option<String>,
}Expand description
The request body for RevokeRevision.
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.data_set_id: Option<String>The unique identifier for a data set.
revision_id: Option<String>The unique identifier for a revision.
revocation_comment: Option<String>A required comment to inform subscribers of the reason their access to the revision was revoked.
Implementations
sourceimpl RevokeRevisionInput
impl RevokeRevisionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeRevision, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeRevision, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RevokeRevision>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RevokeRevisionInput
sourceimpl RevokeRevisionInput
impl RevokeRevisionInput
sourcepub fn data_set_id(&self) -> Option<&str>
pub fn data_set_id(&self) -> Option<&str>
The unique identifier for a data set.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
The unique identifier for a revision.
sourcepub fn revocation_comment(&self) -> Option<&str>
pub fn revocation_comment(&self) -> Option<&str>
A required comment to inform subscribers of the reason their access to the revision was revoked.
Trait Implementations
sourceimpl Clone for RevokeRevisionInput
impl Clone for RevokeRevisionInput
sourcefn clone(&self) -> RevokeRevisionInput
fn clone(&self) -> RevokeRevisionInput
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 RevokeRevisionInput
impl Debug for RevokeRevisionInput
sourceimpl PartialEq<RevokeRevisionInput> for RevokeRevisionInput
impl PartialEq<RevokeRevisionInput> for RevokeRevisionInput
sourcefn eq(&self, other: &RevokeRevisionInput) -> bool
fn eq(&self, other: &RevokeRevisionInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &RevokeRevisionInput) -> bool
fn ne(&self, other: &RevokeRevisionInput) -> bool
This method tests for !=.
impl StructuralPartialEq for RevokeRevisionInput
Auto Trait Implementations
impl RefUnwindSafe for RevokeRevisionInput
impl Send for RevokeRevisionInput
impl Sync for RevokeRevisionInput
impl Unpin for RevokeRevisionInput
impl UnwindSafe for RevokeRevisionInput
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