Struct aws_sdk_codecommit::types::builders::CommentBuilder
source · #[non_exhaustive]pub struct CommentBuilder { /* private fields */ }
Expand description
A builder for Comment
.
Implementations§
source§impl CommentBuilder
impl CommentBuilder
sourcepub fn comment_id(self, input: impl Into<String>) -> Self
pub fn comment_id(self, input: impl Into<String>) -> Self
The system-generated comment ID.
sourcepub fn set_comment_id(self, input: Option<String>) -> Self
pub fn set_comment_id(self, input: Option<String>) -> Self
The system-generated comment ID.
sourcepub fn get_comment_id(&self) -> &Option<String>
pub fn get_comment_id(&self) -> &Option<String>
The system-generated comment ID.
sourcepub fn set_content(self, input: Option<String>) -> Self
pub fn set_content(self, input: Option<String>) -> Self
The content of the comment.
sourcepub fn get_content(&self) -> &Option<String>
pub fn get_content(&self) -> &Option<String>
The content of the comment.
sourcepub fn in_reply_to(self, input: impl Into<String>) -> Self
pub fn in_reply_to(self, input: impl Into<String>) -> Self
The ID of the comment for which this comment is a reply, if any.
sourcepub fn set_in_reply_to(self, input: Option<String>) -> Self
pub fn set_in_reply_to(self, input: Option<String>) -> Self
The ID of the comment for which this comment is a reply, if any.
sourcepub fn get_in_reply_to(&self) -> &Option<String>
pub fn get_in_reply_to(&self) -> &Option<String>
The ID of the comment for which this comment is a reply, if any.
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The date and time the comment was created, in timestamp format.
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The date and time the comment was created, in timestamp format.
sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The date and time the comment was created, in timestamp format.
sourcepub fn last_modified_date(self, input: DateTime) -> Self
pub fn last_modified_date(self, input: DateTime) -> Self
The date and time the comment was most recently modified, in timestamp format.
sourcepub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
The date and time the comment was most recently modified, in timestamp format.
sourcepub fn get_last_modified_date(&self) -> &Option<DateTime>
pub fn get_last_modified_date(&self) -> &Option<DateTime>
The date and time the comment was most recently modified, in timestamp format.
The Amazon Resource Name (ARN) of the person who posted the comment.
The Amazon Resource Name (ARN) of the person who posted the comment.
The Amazon Resource Name (ARN) of the person who posted the comment.
sourcepub fn deleted(self, input: bool) -> Self
pub fn deleted(self, input: bool) -> Self
A Boolean value indicating whether the comment has been deleted.
sourcepub fn set_deleted(self, input: Option<bool>) -> Self
pub fn set_deleted(self, input: Option<bool>) -> Self
A Boolean value indicating whether the comment has been deleted.
sourcepub fn get_deleted(&self) -> &Option<bool>
pub fn get_deleted(&self) -> &Option<bool>
A Boolean value indicating whether the comment has been deleted.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
sourcepub fn get_client_request_token(&self) -> &Option<String>
pub fn get_client_request_token(&self) -> &Option<String>
A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
sourcepub fn caller_reactions(self, input: impl Into<String>) -> Self
pub fn caller_reactions(self, input: impl Into<String>) -> Self
Appends an item to caller_reactions
.
To override the contents of this collection use set_caller_reactions
.
The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.
sourcepub fn set_caller_reactions(self, input: Option<Vec<String>>) -> Self
pub fn set_caller_reactions(self, input: Option<Vec<String>>) -> Self
The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.
sourcepub fn get_caller_reactions(&self) -> &Option<Vec<String>>
pub fn get_caller_reactions(&self) -> &Option<Vec<String>>
The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.
sourcepub fn reaction_counts(self, k: impl Into<String>, v: i32) -> Self
pub fn reaction_counts(self, k: impl Into<String>, v: i32) -> Self
Adds a key-value pair to reaction_counts
.
To override the contents of this collection use set_reaction_counts
.
A string to integer map that represents the number of individual users who have responded to a comment with the specified reactions.
sourcepub fn set_reaction_counts(self, input: Option<HashMap<String, i32>>) -> Self
pub fn set_reaction_counts(self, input: Option<HashMap<String, i32>>) -> Self
A string to integer map that represents the number of individual users who have responded to a comment with the specified reactions.
Trait Implementations§
source§impl Clone for CommentBuilder
impl Clone for CommentBuilder
source§fn clone(&self) -> CommentBuilder
fn clone(&self) -> CommentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CommentBuilder
impl Debug for CommentBuilder
source§impl Default for CommentBuilder
impl Default for CommentBuilder
source§fn default() -> CommentBuilder
fn default() -> CommentBuilder
source§impl PartialEq for CommentBuilder
impl PartialEq for CommentBuilder
source§fn eq(&self, other: &CommentBuilder) -> bool
fn eq(&self, other: &CommentBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.