Interface PermissionsBoundaryDecisionDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PermissionsBoundaryDecisionDetail.Builder,PermissionsBoundaryDecisionDetail>,SdkBuilder<PermissionsBoundaryDecisionDetail.Builder,PermissionsBoundaryDecisionDetail>,SdkPojo
- Enclosing class:
- PermissionsBoundaryDecisionDetail
@Mutable @NotThreadSafe public static interface PermissionsBoundaryDecisionDetail.Builder extends SdkPojo, CopyableBuilder<PermissionsBoundaryDecisionDetail.Builder,PermissionsBoundaryDecisionDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PermissionsBoundaryDecisionDetail.BuilderallowedByPermissionsBoundary(Boolean allowedByPermissionsBoundary)Specifies whether an action is allowed by a permissions boundary that is applied to an IAM entity (user or role).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
allowedByPermissionsBoundary
PermissionsBoundaryDecisionDetail.Builder allowedByPermissionsBoundary(Boolean allowedByPermissionsBoundary)
Specifies whether an action is allowed by a permissions boundary that is applied to an IAM entity (user or role). A value of
truemeans that the permissions boundary does not deny the action. This means that the policy includes anAllowstatement that matches the request. In this case, if an identity-based policy also allows the action, the request is allowed. A value offalsemeans that either the requested action is not allowed (implicitly denied) or that the action is explicitly denied by the permissions boundary. In both of these cases, the action is not allowed, regardless of the identity-based policy.- Parameters:
allowedByPermissionsBoundary- Specifies whether an action is allowed by a permissions boundary that is applied to an IAM entity (user or role). A value oftruemeans that the permissions boundary does not deny the action. This means that the policy includes anAllowstatement that matches the request. In this case, if an identity-based policy also allows the action, the request is allowed. A value offalsemeans that either the requested action is not allowed (implicitly denied) or that the action is explicitly denied by the permissions boundary. In both of these cases, the action is not allowed, regardless of the identity-based policy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-