Module Values.ReplicationSubnetGroupSource

Describes a subnet group in response to a request by the DescribeReplicationSubnetGroups operation.

Sourcetype nonrec t = {
  1. replicationSubnetGroupIdentifier : String_.t option;
    (*

    The identifier of the replication instance subnet group.

    *)
  2. replicationSubnetGroupDescription : String_.t option;
    (*

    A description for the replication subnet group.

    *)
  3. vpcId : String_.t option;
    (*

    The ID of the VPC.

    *)
  4. subnetGroupStatus : String_.t option;
    (*

    The status of the subnet group.

    *)
  5. subnets : SubnetList.t option;
    (*

    The subnets that are in the subnet group.

    *)
  6. supportedNetworkTypes : StringList.t option;
    (*

    The IP addressing protocol supported by the subnet group. This is used by a replication instance with values such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet supported.

    *)
  7. isReadOnly : BooleanOptional.t option;
    (*

    Indicates whether the replication subnet group is read-only. When set to true, this subnet group is managed by DMS as part of a zero-ETL integration and cannot be modified or deleted directly. You can only modify or delete read-only subnet groups through their associated zero-ETL integration.

    *)
}
Sourceval make : ?replicationSubnetGroupIdentifier:??? -> ?replicationSubnetGroupDescription:??? -> ?vpcId:??? -> ?subnetGroupStatus:??? -> ?subnets:??? -> ?supportedNetworkTypes:??? -> ?isReadOnly:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t