Struct aws_sdk_sts::error::PackedPolicyTooLargeException
source · [−]#[non_exhaustive]pub struct PackedPolicyTooLargeException { /* private fields */ }
Expand description
The request was rejected because the total packed size of the session policies and session tags combined was too large. An Amazon Web Services conversion compresses the session policy document, session policy ARNs, and session tags into a packed binary format that has a separate limit. The error message indicates by percentage how close the policies and tags are to the upper size limit. For more information, see Passing Session Tags in STS in the IAM User Guide.
You could receive this error even though you meet other defined session policy and session tag limits. For more information, see IAM and STS Entity Character Limits in the IAM User Guide.
Implementations
sourceimpl PackedPolicyTooLargeException
impl PackedPolicyTooLargeException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PackedPolicyTooLargeException
.
Trait Implementations
sourceimpl Clone for PackedPolicyTooLargeException
impl Clone for PackedPolicyTooLargeException
sourcefn clone(&self) -> PackedPolicyTooLargeException
fn clone(&self) -> PackedPolicyTooLargeException
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PackedPolicyTooLargeException
impl Debug for PackedPolicyTooLargeException
sourceimpl Error for PackedPolicyTooLargeException
impl Error for PackedPolicyTooLargeException
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl PartialEq<PackedPolicyTooLargeException> for PackedPolicyTooLargeException
impl PartialEq<PackedPolicyTooLargeException> for PackedPolicyTooLargeException
sourcefn eq(&self, other: &PackedPolicyTooLargeException) -> bool
fn eq(&self, other: &PackedPolicyTooLargeException) -> bool
impl StructuralPartialEq for PackedPolicyTooLargeException
Auto Trait Implementations
impl RefUnwindSafe for PackedPolicyTooLargeException
impl Send for PackedPolicyTooLargeException
impl Sync for PackedPolicyTooLargeException
impl Unpin for PackedPolicyTooLargeException
impl UnwindSafe for PackedPolicyTooLargeException
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more