Class: Aws::CodeGuruReviewer::Types::RequestMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::RequestMetadata
- Defined in:
- gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb
Overview
Metadata that is associated with a code review. This applies to both pull request and repository analysis code reviews.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_info ⇒ Types::EventInfo
Information about the event associated with a code review.
-
#request_id ⇒ String
The ID of the request.
-
#requester ⇒ String
An identifier, such as a name or account ID, that is associated with the requester.
-
#vendor_name ⇒ String
The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review.
Instance Attribute Details
#event_info ⇒ Types::EventInfo
Information about the event associated with a code review.
1765 1766 1767 1768 1769 1770 1771 1772 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1765 class RequestMetadata < Struct.new( :request_id, :requester, :event_info, :vendor_name) SENSITIVE = [] include Aws::Structure end |
#request_id ⇒ String
The ID of the request. This is required for a pull request code review.
1765 1766 1767 1768 1769 1770 1771 1772 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1765 class RequestMetadata < Struct.new( :request_id, :requester, :event_info, :vendor_name) SENSITIVE = [] include Aws::Structure end |
#requester ⇒ String
An identifier, such as a name or account ID, that is associated with
the requester. The Requester
is used to capture the author/actor
name of the event request.
1765 1766 1767 1768 1769 1770 1771 1772 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1765 class RequestMetadata < Struct.new( :request_id, :requester, :event_info, :vendor_name) SENSITIVE = [] include Aws::Structure end |
#vendor_name ⇒ String
The name of the repository vendor used to upload code to an S3
bucket for a CI/CD code review. For example, if code and artifacts
are uploaded to an S3 bucket for a CI/CD code review by GitHub
scripts from a GitHub repository, then the repository association's
ProviderType
is S3Bucket
and the CI/CD repository vendor name is
GitHub. For more information, see the definition for ProviderType
in RepositoryAssociation.
1765 1766 1767 1768 1769 1770 1771 1772 |
# File 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 1765 class RequestMetadata < Struct.new( :request_id, :requester, :event_info, :vendor_name) SENSITIVE = [] include Aws::Structure end |