Struct aws_sdk_nimble::client::fluent_builders::PutStudioMembers
source · pub struct PutStudioMembers { /* private fields */ }
Expand description
Fluent builder constructing a request to PutStudioMembers
.
Add/update users with given persona to studio membership.
Implementations§
source§impl PutStudioMembers
impl PutStudioMembers
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<PutStudioMembers, AwsResponseRetryClassifier>, SdkError<PutStudioMembersError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<PutStudioMembers, AwsResponseRetryClassifier>, SdkError<PutStudioMembersError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<PutStudioMembersOutput, SdkError<PutStudioMembersError>>
pub async fn send(
self
) -> Result<PutStudioMembersOutput, SdkError<PutStudioMembersError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn identity_store_id(self, input: impl Into<String>) -> Self
pub fn identity_store_id(self, input: impl Into<String>) -> Self
The ID of the identity store.
sourcepub fn set_identity_store_id(self, input: Option<String>) -> Self
pub fn set_identity_store_id(self, input: Option<String>) -> Self
The ID of the identity store.
sourcepub fn members(self, input: NewStudioMember) -> Self
pub fn members(self, input: NewStudioMember) -> Self
Appends an item to members
.
To override the contents of this collection use set_members
.
A list of members.
sourcepub fn set_members(self, input: Option<Vec<NewStudioMember>>) -> Self
pub fn set_members(self, input: Option<Vec<NewStudioMember>>) -> Self
A list of members.
sourcepub fn set_studio_id(self, input: Option<String>) -> Self
pub fn set_studio_id(self, input: Option<String>) -> Self
The studio ID.
Trait Implementations§
source§impl Clone for PutStudioMembers
impl Clone for PutStudioMembers
source§fn clone(&self) -> PutStudioMembers
fn clone(&self) -> PutStudioMembers
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more