Struct aws_sdk_iam::client::fluent_builders::PutUserPermissionsBoundary [−][src]
pub struct PutUserPermissionsBoundary<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to PutUserPermissionsBoundary
.
Adds or updates the policy that is specified as the IAM user's permissions boundary. You can use an Amazon Web Services managed policy or a customer managed policy to set the boundary for a user. Use the boundary to control the maximum permissions that the user can have. Setting a permissions boundary is an advanced feature that can affect the permissions for the user.
Policies that are used as permissions boundaries do not provide permissions. You must also attach a permissions policy to the user. To learn how the effective permissions for a user are evaluated, see IAM JSON policy evaluation logic in the IAM User Guide.
Implementations
impl<C, M, R> PutUserPermissionsBoundary<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> PutUserPermissionsBoundary<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<PutUserPermissionsBoundaryOutput, SdkError<PutUserPermissionsBoundaryError>> where
R::Policy: SmithyRetryPolicy<PutUserPermissionsBoundaryInputOperationOutputAlias, PutUserPermissionsBoundaryOutput, PutUserPermissionsBoundaryError, PutUserPermissionsBoundaryInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<PutUserPermissionsBoundaryOutput, SdkError<PutUserPermissionsBoundaryError>> where
R::Policy: SmithyRetryPolicy<PutUserPermissionsBoundaryInputOperationOutputAlias, PutUserPermissionsBoundaryOutput, PutUserPermissionsBoundaryError, PutUserPermissionsBoundaryInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The name (friendly name, not ARN) of the IAM user for which you want to set the permissions boundary.
The name (friendly name, not ARN) of the IAM user for which you want to set the permissions boundary.
The ARN of the policy that is used to set the permissions boundary for the user.
The ARN of the policy that is used to set the permissions boundary for the user.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for PutUserPermissionsBoundary<C, M, R>
impl<C, M, R> Send for PutUserPermissionsBoundary<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for PutUserPermissionsBoundary<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for PutUserPermissionsBoundary<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for PutUserPermissionsBoundary<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more