Struct aws_sdk_iam::client::fluent_builders::PutRolePermissionsBoundary [−][src]
pub struct PutRolePermissionsBoundary<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to PutRolePermissionsBoundary
.
Adds or updates the policy that is specified as the IAM role's permissions boundary. You can use an Amazon Web Services managed policy or a customer managed policy to set the boundary for a role. Use the boundary to control the maximum permissions that the role can have. Setting a permissions boundary is an advanced feature that can affect the permissions for the role.
You cannot set the boundary for a service-linked role.
Policies used as permissions boundaries do not provide permissions. You must also attach a permissions policy to the role. To learn how the effective permissions for a role are evaluated, see IAM JSON policy evaluation logic in the IAM User Guide.
Implementations
impl<C, M, R> PutRolePermissionsBoundary<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> PutRolePermissionsBoundary<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<PutRolePermissionsBoundaryOutput, SdkError<PutRolePermissionsBoundaryError>> where
R::Policy: SmithyRetryPolicy<PutRolePermissionsBoundaryInputOperationOutputAlias, PutRolePermissionsBoundaryOutput, PutRolePermissionsBoundaryError, PutRolePermissionsBoundaryInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<PutRolePermissionsBoundaryOutput, SdkError<PutRolePermissionsBoundaryError>> where
R::Policy: SmithyRetryPolicy<PutRolePermissionsBoundaryInputOperationOutputAlias, PutRolePermissionsBoundaryOutput, PutRolePermissionsBoundaryError, PutRolePermissionsBoundaryInputOperationRetryAlias>,
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 role for which you want to set the permissions boundary.
The name (friendly name, not ARN) of the IAM role for which you want to set the permissions boundary.
The ARN of the policy that is used to set the permissions boundary for the role.
The ARN of the policy that is used to set the permissions boundary for the role.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for PutRolePermissionsBoundary<C, M, R>
impl<C, M, R> Send for PutRolePermissionsBoundary<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for PutRolePermissionsBoundary<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for PutRolePermissionsBoundary<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for PutRolePermissionsBoundary<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