pub struct RegisterOnPremisesInstanceInput {
pub iam_session_arn: Option<String>,
pub iam_user_arn: Option<String>,
pub instance_name: String,
}Expand description
Represents the input of the register on-premises instance operation.
Fields§
§iam_session_arn: Option<String>The ARN of the IAM session to associate with the on-premises instance.
iam_user_arn: Option<String>The ARN of the IAM user to associate with the on-premises instance.
instance_name: StringThe name of the on-premises instance to register.
Trait Implementations§
Source§impl Clone for RegisterOnPremisesInstanceInput
impl Clone for RegisterOnPremisesInstanceInput
Source§fn clone(&self) -> RegisterOnPremisesInstanceInput
fn clone(&self) -> RegisterOnPremisesInstanceInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RegisterOnPremisesInstanceInput
impl Default for RegisterOnPremisesInstanceInput
Source§fn default() -> RegisterOnPremisesInstanceInput
fn default() -> RegisterOnPremisesInstanceInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RegisterOnPremisesInstanceInput
impl PartialEq for RegisterOnPremisesInstanceInput
Source§fn eq(&self, other: &RegisterOnPremisesInstanceInput) -> bool
fn eq(&self, other: &RegisterOnPremisesInstanceInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegisterOnPremisesInstanceInput
Auto Trait Implementations§
impl Freeze for RegisterOnPremisesInstanceInput
impl RefUnwindSafe for RegisterOnPremisesInstanceInput
impl Send for RegisterOnPremisesInstanceInput
impl Sync for RegisterOnPremisesInstanceInput
impl Unpin for RegisterOnPremisesInstanceInput
impl UnwindSafe for RegisterOnPremisesInstanceInput
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