Class: Aws::SMS::Types::ServerReplicationParameters
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SMS::Types::ServerReplicationParameters
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sms/types.rb
 
Overview
The replication parameters for replicating a server.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #encrypted  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the replication job produces encrypted AMIs.
 - 
  
    
      #frequency  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The frequency of creating replication jobs for the server.
 - 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the KMS key for replication jobs that produce encrypted AMIs.
 - 
  
    
      #license_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The license type for creating a replication job for the server.
 - 
  
    
      #number_of_recent_amis_to_keep  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of recent AMIs to keep when creating a replication job for this server.
 - 
  
    
      #run_once  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether to run the replication job one time.
 - 
  
    
      #seed_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The seed time for creating a replication job for the server.
 
Instance Attribute Details
#encrypted ⇒ Boolean
Indicates whether the replication job produces encrypted AMIs.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#frequency ⇒ Integer
The frequency of creating replication jobs for the server.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#kms_key_id ⇒ String
The ID of the KMS key for replication jobs that produce encrypted AMIs. This value can be any of the following:
- 
KMS key ID
 - 
KMS key alias
 - 
ARN referring to the KMS key ID
 - 
ARN referring to the KMS key alias
 
If encrypted is enabled but a KMS key ID is not specified, the customer’s default KMS key for Amazon EBS is used.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#license_type ⇒ String
The license type for creating a replication job for the server.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#number_of_recent_amis_to_keep ⇒ Integer
The number of recent AMIs to keep when creating a replication job for this server.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#run_once ⇒ Boolean
Indicates whether to run the replication job one time.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#seed_time ⇒ Time
The seed time for creating a replication job for the server.
      1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801  | 
    
      # File 'lib/aws-sdk-sms/types.rb', line 1791 class ServerReplicationParameters < Struct.new( :seed_time, :frequency, :run_once, :license_type, :number_of_recent_amis_to_keep, :encrypted, :kms_key_id) SENSITIVE = [] include Aws::Structure end  |