Class: Aws::AccessAnalyzer::Types::CancelPolicyGenerationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::CancelPolicyGenerationRequest
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Note:
When making an API call, you may pass CancelPolicyGenerationRequest data as a hash:
{
job_id: "JobId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_id ⇒ String
The
JobId
that is returned by theStartPolicyGeneration
operation.
Instance Attribute Details
#job_id ⇒ String
The JobId
that is returned by the StartPolicyGeneration
operation. The JobId
can be used with GetGeneratedPolicy
to
retrieve the generated policies or used with
CancelPolicyGeneration
to cancel the policy generation request.
529 530 531 532 533 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 529 class CancelPolicyGenerationRequest < Struct.new( :job_id) SENSITIVE = [] include Aws::Structure end |