Class: Aws::Backup::Types::StartReportJobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::StartReportJobInput
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Note:
When making an API call, you may pass StartReportJobInput data as a hash:
{
report_plan_name: "ReportPlanName", # required
idempotency_token: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#idempotency_token ⇒ String
A customer-chosen string that you can use to distinguish between otherwise identical calls to
StartReportJobInput
. -
#report_plan_name ⇒ String
The unique name of a report plan.
Instance Attribute Details
#idempotency_token ⇒ String
A customer-chosen string that you can use to distinguish between
otherwise identical calls to StartReportJobInput
. Retrying a
successful request with the same idempotency token results in a
success message with no action taken.
A suitable default value is auto-generated. You should normally not need to pass this option.
5998 5999 6000 6001 6002 6003 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 5998 class StartReportJobInput < Struct.new( :report_plan_name, :idempotency_token) SENSITIVE = [] include Aws::Structure end |
#report_plan_name ⇒ String
The unique name of a report plan.
5998 5999 6000 6001 6002 6003 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 5998 class StartReportJobInput < Struct.new( :report_plan_name, :idempotency_token) SENSITIVE = [] include Aws::Structure end |