pub struct AssumeRoleWithSAMLInput {
pub duration_seconds: Option<i32>,
pub policy: Option<String>,
pub policy_arns: Vec<PolicyDescriptorType>,
pub principal_arn: String,
pub role_arn: String,
pub saml_assertion: String,
}Expand description
STS AssumeRoleWithSAMLInput.
Fields§
§duration_seconds: Option<i32>§policy: Option<String>§policy_arns: Vec<PolicyDescriptorType>§principal_arn: String§role_arn: String§saml_assertion: StringTrait Implementations§
Source§impl Clone for AssumeRoleWithSAMLInput
impl Clone for AssumeRoleWithSAMLInput
Source§fn clone(&self) -> AssumeRoleWithSAMLInput
fn clone(&self) -> AssumeRoleWithSAMLInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssumeRoleWithSAMLInput
impl Debug for AssumeRoleWithSAMLInput
Source§impl Default for AssumeRoleWithSAMLInput
impl Default for AssumeRoleWithSAMLInput
Source§fn default() -> AssumeRoleWithSAMLInput
fn default() -> AssumeRoleWithSAMLInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssumeRoleWithSAMLInput
impl<'de> Deserialize<'de> for AssumeRoleWithSAMLInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AssumeRoleWithSAMLInput
impl RefUnwindSafe for AssumeRoleWithSAMLInput
impl Send for AssumeRoleWithSAMLInput
impl Sync for AssumeRoleWithSAMLInput
impl Unpin for AssumeRoleWithSAMLInput
impl UnsafeUnpin for AssumeRoleWithSAMLInput
impl UnwindSafe for AssumeRoleWithSAMLInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more