#[non_exhaustive]pub struct RemoveProfilePermissionInput {
pub profile_name: Option<String>,
pub revision_id: Option<String>,
pub statement_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.profile_name: Option<String>A human-readable name for the signing profile with permissions to be removed.
revision_id: Option<String>An identifier for the current revision of the signing profile permissions.
statement_id: Option<String>A unique identifier for the cross-account permissions statement.
Implementations§
source§impl RemoveProfilePermissionInput
impl RemoveProfilePermissionInput
sourcepub fn profile_name(&self) -> Option<&str>
pub fn profile_name(&self) -> Option<&str>
A human-readable name for the signing profile with permissions to be removed.
sourcepub fn revision_id(&self) -> Option<&str>
pub fn revision_id(&self) -> Option<&str>
An identifier for the current revision of the signing profile permissions.
sourcepub fn statement_id(&self) -> Option<&str>
pub fn statement_id(&self) -> Option<&str>
A unique identifier for the cross-account permissions statement.
source§impl RemoveProfilePermissionInput
impl RemoveProfilePermissionInput
sourcepub fn builder() -> RemoveProfilePermissionInputBuilder
pub fn builder() -> RemoveProfilePermissionInputBuilder
Creates a new builder-style object to manufacture RemoveProfilePermissionInput.
Trait Implementations§
source§impl Clone for RemoveProfilePermissionInput
impl Clone for RemoveProfilePermissionInput
source§fn clone(&self) -> RemoveProfilePermissionInput
fn clone(&self) -> RemoveProfilePermissionInput
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 Debug for RemoveProfilePermissionInput
impl Debug for RemoveProfilePermissionInput
source§impl PartialEq for RemoveProfilePermissionInput
impl PartialEq for RemoveProfilePermissionInput
source§fn eq(&self, other: &RemoveProfilePermissionInput) -> bool
fn eq(&self, other: &RemoveProfilePermissionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RemoveProfilePermissionInput
Auto Trait Implementations§
impl RefUnwindSafe for RemoveProfilePermissionInput
impl Send for RemoveProfilePermissionInput
impl Sync for RemoveProfilePermissionInput
impl Unpin for RemoveProfilePermissionInput
impl UnwindSafe for RemoveProfilePermissionInput
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