Struct aws_sdk_codecommit::operation::delete_comment_content::builders::DeleteCommentContentFluentBuilder
source · pub struct DeleteCommentContentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteCommentContent
.
Deletes the content of a comment made on a change, file, or commit in a repository.
Implementations§
source§impl DeleteCommentContentFluentBuilder
impl DeleteCommentContentFluentBuilder
sourcepub fn as_input(&self) -> &DeleteCommentContentInputBuilder
pub fn as_input(&self) -> &DeleteCommentContentInputBuilder
Access the DeleteCommentContent as a reference.
sourcepub async fn send(
self
) -> Result<DeleteCommentContentOutput, SdkError<DeleteCommentContentError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteCommentContentOutput, SdkError<DeleteCommentContentError, 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<DeleteCommentContentOutput, DeleteCommentContentError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteCommentContentOutput, DeleteCommentContentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn comment_id(self, input: impl Into<String>) -> Self
pub fn comment_id(self, input: impl Into<String>) -> Self
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
or GetCommentsForPullRequest
.
sourcepub fn set_comment_id(self, input: Option<String>) -> Self
pub fn set_comment_id(self, input: Option<String>) -> Self
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
or GetCommentsForPullRequest
.
sourcepub fn get_comment_id(&self) -> &Option<String>
pub fn get_comment_id(&self) -> &Option<String>
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
or GetCommentsForPullRequest
.
Trait Implementations§
source§impl Clone for DeleteCommentContentFluentBuilder
impl Clone for DeleteCommentContentFluentBuilder
source§fn clone(&self) -> DeleteCommentContentFluentBuilder
fn clone(&self) -> DeleteCommentContentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more