#[non_exhaustive]pub struct DeletePermissionInput {
pub permission_arn: Option<String>,
pub client_token: Option<String>,
}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.permission_arn: Option<String>Specifies the Amazon Resource Name (ARN) of the customer managed permission that you want to delete.
client_token: Option<String>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value..
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.
Implementations§
source§impl DeletePermissionInput
impl DeletePermissionInput
sourcepub fn permission_arn(&self) -> Option<&str>
pub fn permission_arn(&self) -> Option<&str>
Specifies the Amazon Resource Name (ARN) of the customer managed permission that you want to delete.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value..
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.
source§impl DeletePermissionInput
impl DeletePermissionInput
sourcepub fn builder() -> DeletePermissionInputBuilder
pub fn builder() -> DeletePermissionInputBuilder
Creates a new builder-style object to manufacture DeletePermissionInput.
Trait Implementations§
source§impl Clone for DeletePermissionInput
impl Clone for DeletePermissionInput
source§fn clone(&self) -> DeletePermissionInput
fn clone(&self) -> DeletePermissionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeletePermissionInput
impl Debug for DeletePermissionInput
source§impl PartialEq for DeletePermissionInput
impl PartialEq for DeletePermissionInput
source§fn eq(&self, other: &DeletePermissionInput) -> bool
fn eq(&self, other: &DeletePermissionInput) -> bool
self and other values to be equal, and is used
by ==.