Class: Aws::SSM::Types::AutomationExecutionPreview
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SSM::Types::AutomationExecutionPreview
 
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Information about the results of the execution preview.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #regions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about the Amazon Web Services Regions targeted by the execution preview. 
- 
  
    
      #step_previews  ⇒ Hash<String,Integer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about the type of impact a runbook step would have on a resource. 
- 
  
    
      #target_previews  ⇒ Array<Types::TargetPreview> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information that provides a preview of what the impact of running the specified Automation runbook would be. 
- 
  
    
      #total_accounts  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about the Amazon Web Services accounts that were included in the execution preview. 
Instance Attribute Details
#regions ⇒ Array<String>
Information about the Amazon Web Services Regions targeted by the execution preview.
| 1758 1759 1760 1761 1762 1763 1764 1765 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1758 class AutomationExecutionPreview < Struct.new( :step_previews, :regions, :target_previews, :total_accounts) SENSITIVE = [] include Aws::Structure end | 
#step_previews ⇒ Hash<String,Integer>
Information about the type of impact a runbook step would have on a resource.
- Mutating: The runbook step would make changes to the targets through actions that create, modify, or delete resources.
- Non_Mutating: The runbook step would retrieve data about resources but not make changes to them. This category generally includes- Describe*,- List*,- Get*, and similar read-only API actions.
- Undetermined: An undetermined step invokes executions performed by another orchestration service like Lambda, Step Functions, or Amazon Web Services Systems Manager Run Command. An undetermined step might also call a third-party API. Systems Manager Automation doesn't know the outcome of the orchestration processes or third-party API executions, so the results of the steps are undetermined.
| 1758 1759 1760 1761 1762 1763 1764 1765 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1758 class AutomationExecutionPreview < Struct.new( :step_previews, :regions, :target_previews, :total_accounts) SENSITIVE = [] include Aws::Structure end | 
#target_previews ⇒ Array<Types::TargetPreview>
Information that provides a preview of what the impact of running the specified Automation runbook would be.
| 1758 1759 1760 1761 1762 1763 1764 1765 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1758 class AutomationExecutionPreview < Struct.new( :step_previews, :regions, :target_previews, :total_accounts) SENSITIVE = [] include Aws::Structure end | 
#total_accounts ⇒ Integer
Information about the Amazon Web Services accounts that were included in the execution preview.
| 1758 1759 1760 1761 1762 1763 1764 1765 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1758 class AutomationExecutionPreview < Struct.new( :step_previews, :regions, :target_previews, :total_accounts) SENSITIVE = [] include Aws::Structure end |