Struct aws_sdk_workmail::operation::associate_delegate_to_resource::builders::AssociateDelegateToResourceInputBuilder
source · #[non_exhaustive]pub struct AssociateDelegateToResourceInputBuilder { /* private fields */ }
Expand description
A builder for AssociateDelegateToResourceInput
.
Implementations§
source§impl AssociateDelegateToResourceInputBuilder
impl AssociateDelegateToResourceInputBuilder
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The organization under which the resource exists.
This field is required.sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The organization under which the resource exists.
sourcepub fn get_organization_id(&self) -> &Option<String>
pub fn get_organization_id(&self) -> &Option<String>
The organization under which the resource exists.
sourcepub fn resource_id(self, input: impl Into<String>) -> Self
pub fn resource_id(self, input: impl Into<String>) -> Self
The resource for which members (users or groups) are associated.
The identifier can accept ResourceId, Resourcename, or email. The following identity formats are available:
-
Resource ID: r-0123456789a0123456789b0123456789
-
Email address: resource@domain.tld
-
Resource name: resource
sourcepub fn set_resource_id(self, input: Option<String>) -> Self
pub fn set_resource_id(self, input: Option<String>) -> Self
The resource for which members (users or groups) are associated.
The identifier can accept ResourceId, Resourcename, or email. The following identity formats are available:
-
Resource ID: r-0123456789a0123456789b0123456789
-
Email address: resource@domain.tld
-
Resource name: resource
sourcepub fn get_resource_id(&self) -> &Option<String>
pub fn get_resource_id(&self) -> &Option<String>
The resource for which members (users or groups) are associated.
The identifier can accept ResourceId, Resourcename, or email. The following identity formats are available:
-
Resource ID: r-0123456789a0123456789b0123456789
-
Email address: resource@domain.tld
-
Resource name: resource
sourcepub fn entity_id(self, input: impl Into<String>) -> Self
pub fn entity_id(self, input: impl Into<String>) -> Self
The member (user or group) to associate to the resource.
The entity ID can accept UserId or GroupID, Username or Groupname, or email.
-
Entity: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: entity@domain.tld
-
Entity: entity
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The member (user or group) to associate to the resource.
The entity ID can accept UserId or GroupID, Username or Groupname, or email.
-
Entity: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: entity@domain.tld
-
Entity: entity
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
The member (user or group) to associate to the resource.
The entity ID can accept UserId or GroupID, Username or Groupname, or email.
-
Entity: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: entity@domain.tld
-
Entity: entity
sourcepub fn build(self) -> Result<AssociateDelegateToResourceInput, BuildError>
pub fn build(self) -> Result<AssociateDelegateToResourceInput, BuildError>
Consumes the builder and constructs a AssociateDelegateToResourceInput
.
source§impl AssociateDelegateToResourceInputBuilder
impl AssociateDelegateToResourceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AssociateDelegateToResourceOutput, SdkError<AssociateDelegateToResourceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AssociateDelegateToResourceOutput, SdkError<AssociateDelegateToResourceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AssociateDelegateToResourceInputBuilder
impl Clone for AssociateDelegateToResourceInputBuilder
source§fn clone(&self) -> AssociateDelegateToResourceInputBuilder
fn clone(&self) -> AssociateDelegateToResourceInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AssociateDelegateToResourceInputBuilder
impl Default for AssociateDelegateToResourceInputBuilder
source§fn default() -> AssociateDelegateToResourceInputBuilder
fn default() -> AssociateDelegateToResourceInputBuilder
source§impl PartialEq for AssociateDelegateToResourceInputBuilder
impl PartialEq for AssociateDelegateToResourceInputBuilder
source§fn eq(&self, other: &AssociateDelegateToResourceInputBuilder) -> bool
fn eq(&self, other: &AssociateDelegateToResourceInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociateDelegateToResourceInputBuilder
Auto Trait Implementations§
impl Freeze for AssociateDelegateToResourceInputBuilder
impl RefUnwindSafe for AssociateDelegateToResourceInputBuilder
impl Send for AssociateDelegateToResourceInputBuilder
impl Sync for AssociateDelegateToResourceInputBuilder
impl Unpin for AssociateDelegateToResourceInputBuilder
impl UnwindSafe for AssociateDelegateToResourceInputBuilder
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
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>
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>
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 more