Class: Aws::SSM::Types::DocumentReviewCommentSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DocumentReviewCommentSource
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Information about comments added to a document review request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content ⇒ String
The content of a comment entered by a user who requests a review of a new document version, or who reviews the new version.
-
#type ⇒ String
The type of information added to a review request.
Instance Attribute Details
#content ⇒ String
The content of a comment entered by a user who requests a review of a new document version, or who reviews the new version.
7051 7052 7053 7054 7055 7056 |
# File 'lib/aws-sdk-ssm/types.rb', line 7051 class DocumentReviewCommentSource < Struct.new( :type, :content) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of information added to a review request. Currently, only the value ‘Comment` is supported.
7051 7052 7053 7054 7055 7056 |
# File 'lib/aws-sdk-ssm/types.rb', line 7051 class DocumentReviewCommentSource < Struct.new( :type, :content) SENSITIVE = [] include Aws::Structure end |