Interface DocumentReviewCommentSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DocumentReviewCommentSource.Builder,DocumentReviewCommentSource>,SdkBuilder<DocumentReviewCommentSource.Builder,DocumentReviewCommentSource>,SdkPojo
- Enclosing class:
- DocumentReviewCommentSource
@Mutable @NotThreadSafe public static interface DocumentReviewCommentSource.Builder extends SdkPojo, CopyableBuilder<DocumentReviewCommentSource.Builder,DocumentReviewCommentSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentReviewCommentSource.Buildercontent(String content)The content of a comment entered by a user who requests a review of a new document version, or who reviews the new version.DocumentReviewCommentSource.Buildertype(String type)The type of information added to a review request.DocumentReviewCommentSource.Buildertype(DocumentReviewCommentType type)The type of information added to a review request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
type
DocumentReviewCommentSource.Builder type(String type)
The type of information added to a review request. Currently, only the value
Commentis supported.- Parameters:
type- The type of information added to a review request. Currently, only the valueCommentis supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DocumentReviewCommentType,DocumentReviewCommentType
-
type
DocumentReviewCommentSource.Builder type(DocumentReviewCommentType type)
The type of information added to a review request. Currently, only the value
Commentis supported.- Parameters:
type- The type of information added to a review request. Currently, only the valueCommentis supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DocumentReviewCommentType,DocumentReviewCommentType
-
content
DocumentReviewCommentSource.Builder content(String content)
The content of a comment entered by a user who requests a review of a new document version, or who reviews the new version.
- Parameters:
content- The content of a comment entered by a user who requests a review of a new document version, or who reviews the new version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-