pub struct RemoveLayerVersionPermissionRequest {
pub layer_name: String,
pub revision_id: Option<String>,
pub statement_id: String,
pub version_number: i64,
}
Fields§
§layer_name: String
The name or Amazon Resource Name (ARN) of the layer.
revision_id: Option<String>
Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a policy that has changed since you last read it.
statement_id: String
The identifier that was specified when the statement was added.
version_number: i64
The version number.
Trait Implementations§
Source§impl Clone for RemoveLayerVersionPermissionRequest
impl Clone for RemoveLayerVersionPermissionRequest
Source§fn clone(&self) -> RemoveLayerVersionPermissionRequest
fn clone(&self) -> RemoveLayerVersionPermissionRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for RemoveLayerVersionPermissionRequest
impl Default for RemoveLayerVersionPermissionRequest
Source§fn default() -> RemoveLayerVersionPermissionRequest
fn default() -> RemoveLayerVersionPermissionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for RemoveLayerVersionPermissionRequest
impl PartialEq for RemoveLayerVersionPermissionRequest
Source§fn eq(&self, other: &RemoveLayerVersionPermissionRequest) -> bool
fn eq(&self, other: &RemoveLayerVersionPermissionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RemoveLayerVersionPermissionRequest
Auto Trait Implementations§
impl Freeze for RemoveLayerVersionPermissionRequest
impl RefUnwindSafe for RemoveLayerVersionPermissionRequest
impl Send for RemoveLayerVersionPermissionRequest
impl Sync for RemoveLayerVersionPermissionRequest
impl Unpin for RemoveLayerVersionPermissionRequest
impl UnwindSafe for RemoveLayerVersionPermissionRequest
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
Mutably borrows from an owned value. Read more