Struct aws_sdk_securityhub::operation::accept_invitation::builders::AcceptInvitationInputBuilder
source · #[non_exhaustive]pub struct AcceptInvitationInputBuilder { /* private fields */ }
Expand description
A builder for AcceptInvitationInput
.
Implementations§
source§impl AcceptInvitationInputBuilder
impl AcceptInvitationInputBuilder
sourcepub fn master_id(self, input: impl Into<String>) -> Self
pub fn master_id(self, input: impl Into<String>) -> Self
The account ID of the Security Hub administrator account that sent the invitation.
This field is required.sourcepub fn set_master_id(self, input: Option<String>) -> Self
pub fn set_master_id(self, input: Option<String>) -> Self
The account ID of the Security Hub administrator account that sent the invitation.
sourcepub fn get_master_id(&self) -> &Option<String>
pub fn get_master_id(&self) -> &Option<String>
The account ID of the Security Hub administrator account that sent the invitation.
sourcepub fn invitation_id(self, input: impl Into<String>) -> Self
pub fn invitation_id(self, input: impl Into<String>) -> Self
The identifier of the invitation sent from the Security Hub administrator account.
This field is required.sourcepub fn set_invitation_id(self, input: Option<String>) -> Self
pub fn set_invitation_id(self, input: Option<String>) -> Self
The identifier of the invitation sent from the Security Hub administrator account.
sourcepub fn get_invitation_id(&self) -> &Option<String>
pub fn get_invitation_id(&self) -> &Option<String>
The identifier of the invitation sent from the Security Hub administrator account.
sourcepub fn build(self) -> Result<AcceptInvitationInput, BuildError>
pub fn build(self) -> Result<AcceptInvitationInput, BuildError>
Consumes the builder and constructs a AcceptInvitationInput
.
source§impl AcceptInvitationInputBuilder
impl AcceptInvitationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AcceptInvitationOutput, SdkError<AcceptInvitationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AcceptInvitationOutput, SdkError<AcceptInvitationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AcceptInvitationInputBuilder
impl Clone for AcceptInvitationInputBuilder
source§fn clone(&self) -> AcceptInvitationInputBuilder
fn clone(&self) -> AcceptInvitationInputBuilder
Returns a copy 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 Debug for AcceptInvitationInputBuilder
impl Debug for AcceptInvitationInputBuilder
source§impl Default for AcceptInvitationInputBuilder
impl Default for AcceptInvitationInputBuilder
source§fn default() -> AcceptInvitationInputBuilder
fn default() -> AcceptInvitationInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AcceptInvitationInputBuilder
impl PartialEq for AcceptInvitationInputBuilder
source§fn eq(&self, other: &AcceptInvitationInputBuilder) -> bool
fn eq(&self, other: &AcceptInvitationInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AcceptInvitationInputBuilder
Auto Trait Implementations§
impl Freeze for AcceptInvitationInputBuilder
impl RefUnwindSafe for AcceptInvitationInputBuilder
impl Send for AcceptInvitationInputBuilder
impl Sync for AcceptInvitationInputBuilder
impl Unpin for AcceptInvitationInputBuilder
impl UnwindSafe for AcceptInvitationInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.