# File lib/fog/aws/requests/rds/modify_db_snapshot_attribute.rb, line 17
        def modify_db_snapshot_attribute(db_snapshot_identifier, attributes)
          params = {}
          params.merge!(Fog::AWS.indexed_param('ValuesToAdd.member.%d', attributes['Add.MemberId'] || []))
          params.merge!(Fog::AWS.indexed_param('ValuesToRemove.member.%d', attributes['Remove.MemberId'] || []))
          request({
            'Action'        => 'ModifyDBSnapshotAttribute',
            'DBSnapshotIdentifier'    => db_snapshot_identifier,
            :idempotent     => true,
            'AttributeName' => "restore",
            :parser         => Fog::Parsers::AWS::RDS::ModifyDbSnapshotAttribute.new
          }.merge!(params))
        end