Class: Aws::Backup::Types::DescribeReportJobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::DescribeReportJobInput
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Note:
When making an API call, you may pass DescribeReportJobInput data as a hash:
{
report_job_id: "ReportJobId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#report_job_id ⇒ String
The identifier of the report job.
Instance Attribute Details
#report_job_id ⇒ String
The identifier of the report job. A unique, randomly generated, Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot be edited.
2900 2901 2902 2903 2904 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 2900 class DescribeReportJobInput < Struct.new( :report_job_id) SENSITIVE = [] include Aws::Structure end |