Class: Aws::SMS::Types::ServerReplicationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::ServerReplicationConfiguration
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass ServerReplicationConfiguration data as a hash:
{
server: {
server_id: "ServerId",
server_type: "VIRTUAL_MACHINE", # accepts VIRTUAL_MACHINE
vm_server: {
vm_server_address: {
vm_manager_id: "VmManagerId",
vm_id: "VmId",
},
vm_name: "VmName",
vm_manager_name: "VmManagerName",
vm_manager_type: "VSPHERE", # accepts VSPHERE, SCVMM, HYPERV-MANAGER
vm_path: "VmPath",
},
replication_job_id: "ReplicationJobId",
replication_job_terminated: false,
},
server_replication_parameters: {
seed_time: Time.now,
frequency: 1,
run_once: false,
license_type: "AWS", # accepts AWS, BYOL
number_of_recent_amis_to_keep: 1,
encrypted: false,
kms_key_id: "KmsKeyId",
},
}
Replication configuration of a server.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#server ⇒ Types::Server
The ID of the server with which this replication configuration is associated.
-
#server_replication_parameters ⇒ Types::ServerReplicationParameters
The parameters for replicating the server.
Instance Attribute Details
#server ⇒ Types::Server
The ID of the server with which this replication configuration is associated.
2420 2421 2422 2423 2424 2425 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2420 class ServerReplicationConfiguration < Struct.new( :server, :server_replication_parameters) SENSITIVE = [] include Aws::Structure end |
#server_replication_parameters ⇒ Types::ServerReplicationParameters
The parameters for replicating the server.
2420 2421 2422 2423 2424 2425 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2420 class ServerReplicationConfiguration < Struct.new( :server, :server_replication_parameters) SENSITIVE = [] include Aws::Structure end |