pub struct DeleteEntityFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteEntity.
Deletes an entity.
Implementations§
source§impl DeleteEntityFluentBuilder
impl DeleteEntityFluentBuilder
sourcepub fn as_input(&self) -> &DeleteEntityInputBuilder
pub fn as_input(&self) -> &DeleteEntityInputBuilder
Access the DeleteEntity as a reference.
sourcepub async fn send(
self
) -> Result<DeleteEntityOutput, SdkError<DeleteEntityError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteEntityOutput, SdkError<DeleteEntityError, 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 fn customize(
self
) -> CustomizableOperation<DeleteEntityOutput, DeleteEntityError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteEntityOutput, DeleteEntityError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace that contains the entity to delete.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace that contains the entity to delete.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace that contains the entity to delete.
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The ID of the entity to delete.
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
The ID of the entity to delete.
sourcepub fn is_recursive(self, input: bool) -> Self
pub fn is_recursive(self, input: bool) -> Self
A Boolean value that specifies whether the operation deletes child entities.
sourcepub fn set_is_recursive(self, input: Option<bool>) -> Self
pub fn set_is_recursive(self, input: Option<bool>) -> Self
A Boolean value that specifies whether the operation deletes child entities.
sourcepub fn get_is_recursive(&self) -> &Option<bool>
pub fn get_is_recursive(&self) -> &Option<bool>
A Boolean value that specifies whether the operation deletes child entities.
Trait Implementations§
source§impl Clone for DeleteEntityFluentBuilder
impl Clone for DeleteEntityFluentBuilder
source§fn clone(&self) -> DeleteEntityFluentBuilder
fn clone(&self) -> DeleteEntityFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more