Struct aws_sdk_ram::operation::disassociate_resource_share_permission::DisassociateResourceSharePermissionInput
source · #[non_exhaustive]pub struct DisassociateResourceSharePermissionInput {
pub resource_share_arn: Option<String>,
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.The Amazon Resource Name (ARN) of the resource share that you want to remove the managed permission from.
permission_arn: Option<String>The Amazon Resource Name (ARN) of the managed permission to disassociate from the resource share. Changes to permissions take effect immediately.
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§
The Amazon Resource Name (ARN) of the resource share that you want to remove the managed permission from.
sourcepub fn permission_arn(&self) -> Option<&str>
pub fn permission_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the managed permission to disassociate from the resource share. Changes to permissions take effect immediately.
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.
sourcepub fn builder() -> DisassociateResourceSharePermissionInputBuilder
pub fn builder() -> DisassociateResourceSharePermissionInputBuilder
Creates a new builder-style object to manufacture DisassociateResourceSharePermissionInput.
Trait Implementations§
source§fn clone(&self) -> DisassociateResourceSharePermissionInput
fn clone(&self) -> DisassociateResourceSharePermissionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§fn eq(&self, other: &DisassociateResourceSharePermissionInput) -> bool
fn eq(&self, other: &DisassociateResourceSharePermissionInput) -> bool
self and other values to be equal, and is used
by ==.