Class: Aws::AccessAnalyzer::Types::PolicyGeneration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AccessAnalyzer::Types::PolicyGeneration
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains details about the policy generation status and properties.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #completed_on  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A timestamp of when the policy generation was completed. 
- 
  
    
      #job_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ‘JobId` that is returned by the `StartPolicyGeneration` operation. 
- 
  
    
      #principal_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the IAM entity (user or role) for which you are generating a policy. 
- 
  
    
      #started_on  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A timestamp of when the policy generation started. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the policy generation request. 
Instance Attribute Details
#completed_on ⇒ Time
A timestamp of when the policy generation was completed.
| 3179 3180 3181 3182 3183 3184 3185 3186 3187 | # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3179 class PolicyGeneration < Struct.new( :job_id, :principal_arn, :status, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#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.
| 3179 3180 3181 3182 3183 3184 3185 3186 3187 | # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3179 class PolicyGeneration < Struct.new( :job_id, :principal_arn, :status, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#principal_arn ⇒ String
The ARN of the IAM entity (user or role) for which you are generating a policy.
| 3179 3180 3181 3182 3183 3184 3185 3186 3187 | # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3179 class PolicyGeneration < Struct.new( :job_id, :principal_arn, :status, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#started_on ⇒ Time
A timestamp of when the policy generation started.
| 3179 3180 3181 3182 3183 3184 3185 3186 3187 | # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3179 class PolicyGeneration < Struct.new( :job_id, :principal_arn, :status, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the policy generation request.
| 3179 3180 3181 3182 3183 3184 3185 3186 3187 | # File 'lib/aws-sdk-accessanalyzer/types.rb', line 3179 class PolicyGeneration < Struct.new( :job_id, :principal_arn, :status, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end |