createDBSubnetGroup method

Future<CreateDBSubnetGroupResult> createDBSubnetGroup({
  1. required String dBSubnetGroupDescription,
  2. required String dBSubnetGroupName,
  3. required List<String> subnetIds,
  4. List<Tag>? tags,
})

Implementation

Future<CreateDBSubnetGroupResult> createDBSubnetGroup({
  required String dBSubnetGroupDescription,
  required String dBSubnetGroupName,
  required List<String> subnetIds,
  List<Tag>? tags,
}) async {
  ArgumentError.checkNotNull(
      dBSubnetGroupDescription, 'dBSubnetGroupDescription');
  ArgumentError.checkNotNull(dBSubnetGroupName, 'dBSubnetGroupName');
  ArgumentError.checkNotNull(subnetIds, 'subnetIds');
  final $request = <String, dynamic>{};
  $request['DBSubnetGroupDescription'] = dBSubnetGroupDescription;
  $request['DBSubnetGroupName'] = dBSubnetGroupName;
  $request['SubnetIds'] = subnetIds;
  tags?.also((arg) => $request['Tags'] = arg);
  final $result = await _protocol.send(
    $request,
    action: 'CreateDBSubnetGroup',
    version: '2014-09-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['CreateDBSubnetGroupMessage'],
    shapes: shapes,
    resultWrapper: 'CreateDBSubnetGroupResult',
  );
  return CreateDBSubnetGroupResult.fromXml($result);
}