Struct aws_sdk_datazone::operation::delete_project_membership::builders::DeleteProjectMembershipFluentBuilder
source · pub struct DeleteProjectMembershipFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteProjectMembership
.
Deletes project membership in Amazon DataZone.
Implementations§
source§impl DeleteProjectMembershipFluentBuilder
impl DeleteProjectMembershipFluentBuilder
sourcepub fn as_input(&self) -> &DeleteProjectMembershipInputBuilder
pub fn as_input(&self) -> &DeleteProjectMembershipInputBuilder
Access the DeleteProjectMembership as a reference.
sourcepub async fn send(
self
) -> Result<DeleteProjectMembershipOutput, SdkError<DeleteProjectMembershipError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteProjectMembershipOutput, SdkError<DeleteProjectMembershipError, HttpResponse>>
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 async fn customize(
self
) -> Result<CustomizableOperation<DeleteProjectMembershipOutput, DeleteProjectMembershipError, Self>, SdkError<DeleteProjectMembershipError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeleteProjectMembershipOutput, DeleteProjectMembershipError, Self>, SdkError<DeleteProjectMembershipError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone domain where project membership is deleted.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The ID of the Amazon DataZone domain where project membership is deleted.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The ID of the Amazon DataZone domain where project membership is deleted.
sourcepub fn project_identifier(self, input: impl Into<String>) -> Self
pub fn project_identifier(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone project the membership to which is deleted.
sourcepub fn set_project_identifier(self, input: Option<String>) -> Self
pub fn set_project_identifier(self, input: Option<String>) -> Self
The ID of the Amazon DataZone project the membership to which is deleted.
sourcepub fn get_project_identifier(&self) -> &Option<String>
pub fn get_project_identifier(&self) -> &Option<String>
The ID of the Amazon DataZone project the membership to which is deleted.
sourcepub fn member(self, input: Member) -> Self
pub fn member(self, input: Member) -> Self
The project member whose project membership is deleted.
sourcepub fn set_member(self, input: Option<Member>) -> Self
pub fn set_member(self, input: Option<Member>) -> Self
The project member whose project membership is deleted.
sourcepub fn get_member(&self) -> &Option<Member>
pub fn get_member(&self) -> &Option<Member>
The project member whose project membership is deleted.
Trait Implementations§
source§impl Clone for DeleteProjectMembershipFluentBuilder
impl Clone for DeleteProjectMembershipFluentBuilder
source§fn clone(&self) -> DeleteProjectMembershipFluentBuilder
fn clone(&self) -> DeleteProjectMembershipFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more