ReplicationInstanceArgs constructor

const ReplicationInstanceArgs({
  1. Input<int?>? allocatedStorage,
  2. Input<bool?>? allowMajorVersionUpgrade,
  3. Input<bool?>? applyImmediately,
  4. Input<bool?>? autoMinorVersionUpgrade,
  5. Input<String?>? availabilityZone,
  6. Input<String?>? dnsNameServers,
  7. Input<String?>? engineVersion,
  8. Input<ReplicationInstanceKerberosAuthenticationSettings?>? kerberosAuthenticationSettings,
  9. Input<String?>? kmsKeyArn,
  10. Input<bool?>? multiAz,
  11. Input<String?>? networkType,
  12. Input<String?>? preferredMaintenanceWindow,
  13. Input<bool?>? publiclyAccessible,
  14. Input<String?>? region,
  15. required Input<String> replicationInstanceClass,
  16. required Input<String> replicationInstanceId,
  17. Input<String?>? replicationSubnetGroupId,
  18. Input<Map<String, String>?>? tags,
  19. Input<List<String>?>? vpcSecurityGroupIds,
})

Creates a new ReplicationInstanceArgs. allocatedStorage The amount of storage (in gigabytes) to be initially allocated for the replication instance. allowMajorVersionUpgrade Indicates that major version upgrades are allowed. applyImmediately Indicates whether the changes should be applied immediately or during the next maintenance window. Only used when updating an existing resource. autoMinorVersionUpgrade Indicates that minor engine upgrades will be applied automatically to the replication instance during the maintenance window. availabilityZone The EC2 Availability Zone that the replication instance will be created in. dnsNameServers A list of custom DNS name servers supported for the replication instance to access your on-premise source or target database. This list overrides the default name servers supported by the replication instance. You can specify a comma-separated list of internet addresses for up to four on-premise DNS name servers. engineVersion The engine version number of the replication instance. kerberosAuthenticationSettings Configuration block for settings required for Kerberos authentication. See below. kmsKeyArn ARN for the KMS key that will be used to encrypt the connection parameters. If you do not specify a value for kmsKeyArn, then AWS DMS will use your default encryption key. AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS region. multiAz Specifies if the replication instance is a multi-az deployment. You cannot set the availabilityZone parameter if the multiAz parameter is set to true. networkType The type of IP address protocol used by a replication instance. Valid values: IPV4, DUAL. preferredMaintenanceWindow The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). publiclyAccessible Specifies the accessibility options for the replication instance. A value of true represents an instance with a public IP address. A value of false represents an instance with a private IP address. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. replicationInstanceClass The compute and memory capacity of the replication instance as specified by the replication instance class. See AWS DMS User Guide for available instance sizes and advice on which one to choose. replicationInstanceId The replication instance identifier. This parameter is stored as a lowercase string. replicationSubnetGroupId A subnet group to associate with the replication instance. tags A map of tags to assign to the resource. .If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. vpcSecurityGroupIds A list of VPC security group IDs to be used with the replication instance. The VPC security groups must work with the VPC containing the replication instance.

Implementation

const ReplicationInstanceArgs({
  this.allocatedStorage,
  this.allowMajorVersionUpgrade,
  this.applyImmediately,
  this.autoMinorVersionUpgrade,
  this.availabilityZone,
  this.dnsNameServers,
  this.engineVersion,
  this.kerberosAuthenticationSettings,
  this.kmsKeyArn,
  this.multiAz,
  this.networkType,
  this.preferredMaintenanceWindow,
  this.publiclyAccessible,
  this.region,
  required this.replicationInstanceClass,
  required this.replicationInstanceId,
  this.replicationSubnetGroupId,
  this.tags,
  this.vpcSecurityGroupIds,
});