#[non_exhaustive]pub struct RemovePermissionOutput {
pub policy: String,
pub revision_id: String,
/* private fields */
}
Expand description
The structure representing the removePermissionResponse
.
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.policy: String
The JSON-formatted resource-based policy on the profiling group after the specified permissions were removed.
revision_id: String
A universally unique identifier (UUID) for the revision of the resource-based policy after the specified permissions were removed. The updated JSON-formatted policy is in the policy
element of the response.
Implementations§
source§impl RemovePermissionOutput
impl RemovePermissionOutput
sourcepub fn policy(&self) -> &str
pub fn policy(&self) -> &str
The JSON-formatted resource-based policy on the profiling group after the specified permissions were removed.
sourcepub fn revision_id(&self) -> &str
pub fn revision_id(&self) -> &str
A universally unique identifier (UUID) for the revision of the resource-based policy after the specified permissions were removed. The updated JSON-formatted policy is in the policy
element of the response.
source§impl RemovePermissionOutput
impl RemovePermissionOutput
sourcepub fn builder() -> RemovePermissionOutputBuilder
pub fn builder() -> RemovePermissionOutputBuilder
Creates a new builder-style object to manufacture RemovePermissionOutput
.
Trait Implementations§
source§impl Clone for RemovePermissionOutput
impl Clone for RemovePermissionOutput
source§fn clone(&self) -> RemovePermissionOutput
fn clone(&self) -> RemovePermissionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RemovePermissionOutput
impl Debug for RemovePermissionOutput
source§impl PartialEq for RemovePermissionOutput
impl PartialEq for RemovePermissionOutput
source§fn eq(&self, other: &RemovePermissionOutput) -> bool
fn eq(&self, other: &RemovePermissionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for RemovePermissionOutput
impl RequestId for RemovePermissionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for RemovePermissionOutput
Auto Trait Implementations§
impl Freeze for RemovePermissionOutput
impl RefUnwindSafe for RemovePermissionOutput
impl Send for RemovePermissionOutput
impl Sync for RemovePermissionOutput
impl Unpin for RemovePermissionOutput
impl UnwindSafe for RemovePermissionOutput
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> 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